Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #454852

    HI

    Can you tell me how to add the phone number to the left of the menu items on my homepage (Between the logo and the menu items).
    I want it to look the same as it does above the menu items.

    Thanks
    Mike

    #455244

    Hey brooks!

    Do this, http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/, and let us know when your done and we’ll give you some CSS to position it.

    You can drag a text widget to the new widget area and add your phone number in that way.

    Regards,
    Elliott

    • This reply was modified 8 years, 10 months ago by Elliott.
    #455270

    Elliot, thank you!

    Ive added the widget. Can you provide some css to position. The phone number was 24px.

    Cheers

    #455272

    Hi!

    Please add following code to Quick CSS

    #header .textwidget {
      font-size: 24px;
    }

    Regards,
    Yigit

    #455277

    Added. Did nothing

    #455280

    Hi!

    I moved the code to the top of Style.css file and it worked. Please review your website now.

    Best regards,
    Yigit

    #455292

    Thanks Yigit!

    How do I centralize between the menu and the logo?

    As a side note, what going on with the style.css and having to place the code at the top?

    Cheers!

    #455704

    Hi!

    Please try adding the following as well:

    #header .widget {
      left: 30%;
      transform: translate(0%);
    }

    Regards,
    Rikard

    #456287

    Thanks Rikard – Works well!

    Only problem, it clashes with menu and logo on mobile. Is there a way around this? Maybe get it to not display?

    Thanks

    #456453

    Hi!

    Please use the following to hide it on mobile devices:

    @media only screen and (max-width: 767px) {
    #header .widget {
    display:none !important;
    }
    }

    Regards,
    Rikard

    #494328

    Hi Rikard,

    I followed the above instructions and works well. In fact as I needed to add an image rather than text I used the text widget and added the following in the Content area:
    <img src="http://domainname/locationoffile.jpg" />
    Anyway, what I would like to ask you is how to make it disappear when scrolling OR make it smaller similar to how the logo and menu work while scrolling down.

    Thanks

    #494679

    Hi,

    I couldn’t see an image in the header on your site but you can try the following:

    .header-scrolled #header .widget {
    display:none !important;
    }

    Regards,
    Rikard

    #494685

    Thanks for your reply Rikard, but this didn’t work. It looks like the correct code, my widget is called ‘header’. Have you got another idea what could work?
    Thanks

    #495024

    Hi!

    Can you please move the code Rikard posted to the top of Quick CSS field and check if that helps?

    Cheers!
    Yigit

    #495191

    Alas, still not working.

    #495775

    Hi!

    send us a link showing your header widget and we take a look.

    Regards,
    Andy

Viewing 16 posts - 1 through 16 (of 16 total)
  • You must be logged in to reply to this topic.