Adding background color to menus in Zuki theme

  • Unknown's avatar

    Hello!

    1. I would like to add background and hoover colors to the menus on my theme.

    2. I am also curious about getting a “read more” link on all my posts. I see this is done here: http://amodelsfavorites.com/

    Thank you!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Here are some rules to help you set the colours for the main menu, copy them in to the CSS box below your existing declarations:

    #header-top-nav a {
      color:red;
      background:yellow;
      display:block;
      padding:10px;
    }
    
    #header-top-nav a:hover {
      color:green;
      background:lightblue;
    }
    
    #header-top-nav ul li {
      padding:0;
    }

    To include a “read more” link you can use the more tag, which can also be styled with the following code should you want to do so:

    .post .entry-content a.more-link {
      color:darkolivegreen;
      background:silver;
      padding:5px;
    }
  • Unknown's avatar

    Hi again.

    Thanks a ton. I was able to add some if that css and it worked perfectly.

  • The topic ‘Adding background color to menus in Zuki theme’ is closed to new replies.