Jump to content

fonts on arrows


Recommended Posts

I'm not sure if you are working with rtl.css or not.
but basically you need to make those changes.
 
.breadcrumb a {
padding: 0 22px 0 15px;
margin-right: -26px;
margin-left: 0;
}
.breadcrumb a:after {
right: -10px;
left: auto;
-webkit-transform: rotate(225deg);
-ms-transform: rotate(225deg);
transform: rotate(225deg);
}
.breadcrumb a.home {
margin: 0 -10px 0 0;
}

 

Don't forget to clear cache and/or remove ccc when testing/developing

Link to comment
Share on other sites

Oops, I just notice my mistake.

 

.breadcrumb a:after {
right: -10px;
left: auto;
-webkit-transform: rotate(225deg);
-ms-transform: rotate(225deg);
transform: rotate(225deg);
}

 

should be:

 

.breadcrumb a:after {
left: -10px;
right: auto;
-webkit-transform: rotate(225deg);
-ms-transform: rotate(225deg);
transform: rotate(225deg);
}

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...