• Hi All, Ive have the twentyfifteen theme , and have 2 things im battling with. On the menu im trying to add a block around the menu text with a background color . Ive been trying to change the css, but im not very good with css, so i change, and if it does work, revert to the original.

    Im wanting the background color of the text to be #6666FF with a yellow border if its selected.

    Could someone please help.

Viewing 1 replies (of 1 total)
  • Hi,

    Have you tried something like:

    .menu-item {
        background-color: #6666ff; /* or whatever color you want for the background*/
    }
    
    .current-menu-item {
        background-color: #6666FF;
        border: solid 3px yellow;  /*not sure what color you want here*/
    }

    Johnna

Viewing 1 replies (of 1 total)
  • The topic ‘Need help removing padding, and battling’ is closed to new replies.