Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #107386
    roman06
    Participant

    I’m using your fabulous fluid theme. For my home page would like to display my sidebar just like any blog page. However when I add any content to my homepage the sidebar gets pushed all the way down at the end of my content (I have a description of my blog and a code that displays my blogs)! Is there a way I can fix this?

    2nd. question how can I change the black color on navigation nemu(fist part of the page) to white?

    Many thanks

    #107427
    Mahesh
    Keymaster

    @roman06: 1. Please post in your site url.
    2. Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    .site-header {
        background-color: rgb(255, 255, 255);
    }

    The following code to change the color of menu items on hover, since the default is white and won’t be visible after the above change.

    #site-navigation ul li a:hover, #site-navigation ul li a:focus, #site-navigation ul .current-menu-item a, #site-navigation ul li:hover > a, #site-navigation ul li:focus > a {
        color: #000fff;
    }

    Note: Change the color as desired.

    Regards,
    Mahesh

    #107504
    roman06
    Participant

    decor8plusdotcom you’ll see how my sidebar gets pushed down below my content.

    #107545
    roman06
    Participant

    would like to change the color on the load more bar and top left of page where the logo goes to a gray color, what’s the css code for that.

    Thanks in advance

    #107578
    Mahesh
    Keymaster

    @roman06: The sidebar moving to the bottom the content is due to the following Custom CSS:

    .home #content #primary {
        max-width: none;
        width: 100%;
    }

    Please remove it.

    * would like to change the color on the load more bar and top left of page where the logo goes to a gray color
    Add the following CSS:

    #loadMore,
    .site-branding {
        background-color: rgb(157, 157, 157);
    }

    Regards,
    Mahesh

    #107622
    roman06
    Participant

    Thanks for your help it worked great.

    #107706
    Mahesh
    Keymaster

    @roman06: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

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