Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #67271
    eggbanana
    Participant

    Hello,

    Could you please help me with a couple of things on my site? I’ve had a search around the forums but haven’t found the specific answers I’m looking for.

    Can I make the header menu solid black, instead of transparent?

    If this is possible, will the ‘featured image’ (on the post pages) then display directly beneath the header, or will they be slightly hidden behind it?

    Can I change the color of the menu text?

    On my home page there is a white space under the header. How do I get rid of this?

    Thanks for any help you can give me!

    The site is: eggbananatravels.com

    #67280
    Sakin
    Keymaster

    @eggbanana: For solid color, you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    .nav-primary {
        background: #000;
        background: rgba(0,0,0,1);
    }

    To change the menu color, you can change the color code in the following css as per your need and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    /* Menu Text Color */
    .nav-primary .menu a {
    	color: #ddd;
    }
    /* Menu Hover Text Color */
    .nav-primary .menu li:hover > a {
    	color: #aaa;
    }
    /* Menu Hover Active Color */
    .nav-primary .menu .current-menu-item > a, 
    .nav-primary .menu .current-menu-ancestor > a {
    	color: #aaa;
    }

    For homepage spaces, you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    @media screen and (min-width: 991px) {	
        .site { padding-top: 53px; }
    }
    .home #content .wrapper,
    .home #content .type-page {
        padding-top: 0;
    }
    #67305
    eggbanana
    Participant

    Sakin, you are amazing!

    All that worked perfectly, thanks.

    #67310
    Sakin
    Keymaster

    @eggbanana: Thanks for your appreciation and if you like my support and Full Frame theme then please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/full-frame?rate=5#postform

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘White areas on home page’ is closed to new replies.