- This topic is empty.
Viewing 6 posts - 1 through 6 (of 6 total)
Viewing 6 posts - 1 through 6 (of 6 total)
- The forum ‘Design’ is closed to new topics and replies.
The forums ran from 2008-2020 and are now closed and viewable here as an archive.
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.
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 */
}
Hi,
The footer worked! but the sub menu links didn’t!
other suggestions achutbvs?
use important for submenu
.main-menu.menu .sub-menu li>a {
color:#red !important;
}
for hover sub menu
.sub-menu>li>a:hover {
color:red;
}
thank you guys
solved it!