• https://wp.simonfamilyj.org/

    First thing I need help with his making the menu all black across. I was using the Simple CSS lite plugin but I want to try to make every menu item a different color eventually. Can anyone point me in the direction of the CSS I need to be looking for?

    I am also using the Pagelines lite theme which won’t let me edit the syle.css but has a place to put in custom CSS.

    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Try using Firebug (for Firefox) or Inspect element in Google Chrome. Then you can play around with the code and copy and paste it into the space you theme set up for custom CSS.

    You could also set up a Child theme.
    https://codex.www.ads-software.com/Child_Themes

    To target a specific menu item, you can use the specific id for that page — for example, your home page has this in the menu code:

    <li id="menu-item-34" ....>

    So when your write the custom CSS, use that in your selector:

    li#menu-item-34 {
       styles here... ;
    }

    That theme has lots of complicated CSS for the menus, so definitely use Firebug to sort out what code you’ll need to write to make changes.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Need help customizing my menu’ is closed to new replies.