[Resolved] Header with border also on tablet and mobile view

Home Forums Support [Resolved] Header with border also on tablet and mobile view

Home Forums Support Header with border also on tablet and mobile view

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #726079
    Jos

    Hi,

    I am building a site where I want a border under the header. I found some CSS to fix this. But it only shows on desktop.

    body:not(.home) .site-header {
    border-bottom: 2px solid #930A1A;
    }

    How can i use CSS to get a border on tablet and mobile too?
    And can i use different thickness and color for the border?

    Thanks in advance.
    Jos

    #726101
    Leo
    Staff
    Customer Support

    Hi there,

    I’m unable to get your site to load. Can you double check?

    That CSS will add a border on every page except the home page.

    If you want it on every page, try this CSS:

    .site-header {
        border-bottom: 1px solid #000000;
    }

    This should add it to tablet and mobile as well. You can increase the px number to make it thicker, and change #000000 to the color you want.

    Let me know if this helps 🙂

    #726280
    Jos

    Hi Leo,

    Thanks for your quick reaction.
    The link is https://heidi.beheer95.nl/
    I used it, but it still does show only on desktop.
    Other ideas?

    Greets,
    Jos

    #726367
    David
    Staff
    Customer Support

    Hi there,

    we need to include the mobile header in your CSS:

    body:not(.home) .site-header, body:not(.home) #mobile-header {
        border-bottom: 2px solid #930A1A;
    }
    #726498
    Jos

    Hi David,

    This worked.
    THANKS!

    Greets,
    Jos

    #726506
    David
    Staff
    Customer Support

    Glad we could help

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