i want to know of this is a general problem or if there is some conflict in my css? i see the change of color in mouse over links in firefox and even explorer but dont in safari and chrome, im adding the classes in the module admin

Comments

BarisW’s picture

Can you post the CSS code?

koffer’s picture

i have a breacrumb a:hover. Is it posible other a:hover css code afect?

This is my code:

.breadcrumb {

	border-bottom:6px solid #dbdbdb;
        margin:0 0 30px 0;
        padding:0 0 13px 0;
        font-size:24px;
        color: #ff3300; 
        letter-spacing: 0px;
}


.breadcrumb a:hover  {
	text-transform: none;
	text-decoration: none;
        color: #ff3300;

}
BarisW’s picture

It is working here. It might be some other CSS rules interfering with yours.
Could you try putting an !important begin the rule. For instance:

.breadcrumb {
	border-bottom:6px solid #dbdbdb;
        margin:0 0 30px 0;
        padding:0 0 13px 0;
        font-size:24px;
        color: #ff3300; 
        letter-spacing: 0px;
}

.breadcrumb a:hover  {
	text-transform: none !important;
	text-decoration: none !important;
        color: #ff3300 !important;

}
BarisW’s picture

Status: Active » Fixed

No reply in months. Assuming this is fixed.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.