Penscratch theme css – completely ignorant

  • Unknown's avatar

    Hi,

    Please help. I need to my my logo bigger and don’t know how to do this with CSS.

    I also need to change the colour of the menu font to make it bigger and then the colour to #FFCOCB when the mouse hovers over it.

    I am completely clueless and any help would be greatly appreciated.

    Thanks,

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

  • Try this CSS to make your logo bigger:

    .site-logo {
    max-height: 100%;
    }

    To make the menu font bigger:

    .menu-menu-1-container {
        font-size: 15px;
    }

    Change menu items colour to #FFCOCB when the mouse hovers over it:

    ul.nav-menu li a:hover {
     color: #FFCOCB;
    }

    Add this CSS to CSS Editor and see if you like the result.

  • The topic ‘Penscratch theme css – completely ignorant’ is closed to new replies.