• Resolved fspijker

    (@fspijker)


    I have 5 menu buttons. “Home”, “Books”, “News”, “Me” and “Contact”. I want to give them all their own background-color using CSS. Is this possible? I’m new to WordPress and I only made a very simple website with HTML5, CSS and Javascript before. Any help would be appreciated!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Fruitful Code

    (@fruitfulcode)

    This is not possible via theme options,

    You need to add own color to each menu item using their id

    #menu-item-1638 a {
    background-color: #000
    }
    #menu-item-1696 a {
    background-color: #333
    }

    etc

    Replace each -item- number on the own.

    Thread Starter fspijker

    (@fspijker)

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Can I give menu buttons an individual color?’ is closed to new replies.