Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Design Change sub menu color when hover and footer

  • This topic is empty.
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #271794
    rashidhmoud
    Participant

    Hi,

    Please visit my website here 3ayshonline.com

    Here is the problem: I’m trying to change the color of the sub menu links when the mouse pointer is over them, since the website is in Arabic try to find this word “العملات الرقمية” and hover over it, sub menu links will show up and when you hover over them the (background color) is red and I want to change it to white!

    and also I can’t change the background of the footer!

    Can you please help me?!

    Thank you.

    #271796

    Hi Rashid

    you can change hover background color :

    .main-menu.menu .sub-menu>li:hover>a, .bs-slider-2-item .term-badges.floated .term-badge a,
              .bs-slider-3-item .term-badges.floated .term-badge a, .listing-item-blog:hover a.read-more{
    background:#fff !important;
    

    }

    you can change footer background

    .site-footer.full-width .copy-footer {
    background:Red; /* change background what color you need */
    }

    #271800
    rashidhmoud
    Participant

    Hi,

    The footer worked! but the sub menu links didn’t!

    other suggestions achutbvs?

    #271836
    kashif
    Participant

    use important for submenu

    .main-menu.menu .sub-menu li>a {
    color:#red !important;
    }

    #271837
    kashif
    Participant

    for hover sub menu

    .sub-menu>li>a:hover {
    color:red;
    }

    #271839
    rashidhmoud
    Participant

    thank you guys
    solved it!

Viewing 6 posts - 1 through 6 (of 6 total)
  • The forum ‘Design’ is closed to new topics and replies.