• Hi
    i’ve a special color for the header, same place where i have the menu.
    But this color only appear if i scroll….is there a way to make the color appear even if i don’t scroll?

    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello @limner

    Can you please provide a link to your website?

    Kind Regards, Roman.

    Thread Starter limner

    (@limner)

    AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hello limner,

    => Put below css code into Additional CSS textarea (Dashboard >> Apperance >> Customize) then click on Save & Publish button.
    => If there is no Additional CSS option then put below css code into your current theme’s style.css file located at wp-content/themes/your_current_active_theme/ folder.


    .site-header{
    background-color: rgba(102,26,51,0.9);
    }

    Note : All Changes you done in style.css or other file are gone when you update theme. So prefer Child Theme

    Hope this will helps you.

    @limner, please try to use the following CSS code.

    You can add CSS code in DashboardAppearanceCustomizeAdditional CSS (WordPress 4.7 and up). Also you can add CSS code directly to style.css file of your child theme.

    @media only screen and (min-width: 1025px) {
        #masthead {
            background-color: rgba(102,26,51,0.9);
        }
    }

    Kind Regards, Roman.

    Thread Starter limner

    (@limner)

    Great!!!!

    it works ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘background color menu/header’ is closed to new replies.