Viewing 13 replies - 16 through 28 (of 28 total)
  • Theme Author Tom

    (@edge22)

    I would have to see the exact CSS you tried – and know the color you want to use – in order to know why it’s not working for you.

    Thread Starter tunesrcool

    (@tunesrcool)

    how can i get rid of space above Kicker Amp Reviews

    https://www.imagebam.com/image/c4548f573796053

    Theme Author Tom

    (@edge22)

    That’s your content padding.

    I can be altered like this:

    .separate-containers .inside-article {
        padding: 40px;
    }
    Thread Starter tunesrcool

    (@tunesrcool)

    its your theme, you know exactly how to change the hover for current

    you dont need to know what i [ redacted ] tried or what color i [ redacted ] want

    you can see what [ redacted ] it is and you know how to [ redacted ] change, [ redacted ] change it

    https://www.imagebam.com/image/c4548f573796053

    • This reply was modified 7 years, 7 months ago by Jan Dembowski. Reason: Removed profanity
    Theme Author Tom

    (@edge22)

    I’m trying to help you accomplish exactly what you’re looking for, which is why I’m asking what color you’re wanting to change.

    If you want to change the background color of a current menu item when hovering, you can do this:

    .main-navigation .main-nav ul li.current-menu-item > a:hover {
        background: red;
    }

    Sometimes this kind of stuff can get frustrating – I totally get it. Hopefully the above helps you get closer to what you’re trying to accomplish.

    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    Hi @tunesrcool Thanks for looking for help with your problem but can you please manage to maintain a civil attitude here? There’s no cause for your swearing and the theme author doesn’t need to reply let alone help you.

    If you want help then please consider providing the information asked politely. If you don’t want to then that’s fine too. You may not get the help you want.

    Thread Starter tunesrcool

    (@tunesrcool)

    ive tried this, i want it black

    .main-navigation .main-nav ul li.current-menu-item > a:hover {
    background: #000000 !important;
    }

    and ive tried 2 or 3 things in this thread already, you can find them there, its not in my css anymore

    Theme Author Tom

    (@edge22)

    The current menu item on hover is changing to black: https://www.screencast.com/t/gB9iSqE3

    Maybe you’re trying to change that orange color to black?

    Thread Starter tunesrcool

    (@tunesrcool)

    thats what i want yea

    the menus always black, after i go into a page it goes to the orange and stays there

    Theme Author Tom

    (@edge22)

    That’s the code I linked you to yesterday:

    .main-navigation .main-nav ul .current-menu-item > a {
    	color: #ffffff;
    	background-color: #000000;
    }
    
    .main-navigation .main-nav ul .current-menu-item > a:hover, 
    .main-navigation .main-nav ul .current-menu-item > a:focus, 
    .main-navigation .main-nav ul .current-menu-item.sfHover > a {
    	color: #FFFFFF;
    	background-color: #000000;
    }
    Thread Starter tunesrcool

    (@tunesrcool)

    and i already have it my css and it doesnt work, ive told you twice, maybe 3 times

    https://www.imagebam.com/image/38a021574046503

    in fact it was in there twice now before you just gave it to me again, you can see it there

    Theme Author Tom

    (@edge22)

    Hmm, strange.

    Try this instead:

    .main-navigation .main-nav ul li[class*="current-menu-"] > a,
    .main-navigation .main-nav ul li[class*="current-menu-"] > a:hover {
        color: #ffffff;
        background-color: #000000;
    }
    Thread Starter tunesrcool

    (@tunesrcool)

    great that worked thank you

Viewing 13 replies - 16 through 28 (of 28 total)
  • The topic ‘Menu Dropdown’ is closed to new replies.