Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #120627
    southpawsmilin
    Participant

    I would like for my featured slider images to start right below the menu header and I don’t want the menu header transparent…I would like it to be a solid color. Here is the site:

    http://cccofwv.org/staging/5545/

    #120633
    Mahesh
    Keymaster

    @southpawsmilin: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    #masthead {
        position: unset;
        background: #00ff00; /* Use your desired Solid Color HERE */
    }
      
    #masthead.is-sticky {
        position: fixed;
        background: rgba(17, 17, 17, 0.7) none repeat scroll 0 0;
    }

    Note: Please use your desired solid color in the above code.

    Regards,
    Mahesh

    #120655
    southpawsmilin
    Participant

    Mahesh,

    That worked…thank you so much. I have an additional question. My ‘Home’ Page is my Front Page but I don’t want the title ‘Home’ to appear on the page. How can I hide that without leaving the name of the Home Page blank?

    #120657
    southpawsmilin
    Participant

    Also…the logo image I have…I’d like it to be bigger but it seems like it is being automatically resized smaller. I would like less of a black border above and below the image. Can you help with this?

    #120760
    Mahesh
    Keymaster

    @southpawsmilin: Sorry for the late reply. Please add the following CSS:

    .home #main .entry-header {
    	display: none;
    }

    I don’t see any black border above and below the logo, let me know further.

    Regards,
    Mahesh

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Featured slider images appear in menu header and want solid menu header’ is closed to new replies.