Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1228043

    I’d like to place a notification bar at the top of my website with a statement and link to an internal page on my site. I know there is some way to do this in Enfold but can’t seem to find out where it’s located. I’d also like to be able to hide the notification on certain pages. Can you help me?

    #1228544

    Hey phausner,

    Could you please attach a mockup of what you’re trying to achieve?

    Best regards,
    Victoria

    #1228614

    2020-07-07_08-14-17

    #1228789

    Hi,

    Thanks for that. You can activate the bar under Enfold->Header->Extra Elements. You can add your text in the phone number field for example, but it doesn’t have conditional logic, so your would have to hide it using CSS on a per page basis. For example:

    <span class="extra">this is your content</span>

    In Quick CSS:

    .page-id-of-your-page span.extra {
      display: none;
    }

    Then replace page-id-of-your-page in the code above with the page ID class of the page where you want to hide the text on.

    Best regards,
    Rikard

    #1228892

    That’s great! I knew it was a simple setting but couldn’t find it. Duh!

    How could I change the color for the background, text, and link of just that top extra area (without affecting other areas of the website)?

    #1229064

    Hi,

    Please try this in Quick CSS to change the background and colour of the text:

    #header_meta {
      background-color: red;
    }
    
    #header_meta .phone-info span, #header_meta .phone-info a {
      color: yellow;
    }

    Best regards,
    Rikard

    #1229203

    Thank you so much!!!

    #1229284

    Hi,

    Did you need additional help with this topic or shall we close?

    Best regards,
    Jordan Shannon

    #1229434

    You’ve been a tremendous help. Thank you. We can close.

    #1229487

    Hi,

    If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Top notification bar’ is closed to new replies.