MyBB Community Forums

Full Version: Blue lust issues between chrome and firefox
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Firefox.
[Image: kSYFP.jpg]

Chrome.
[Image: rlt9s.jpg]

See the problem? Those black borders for some reason.. how could I get rid of them..?
What's your website's URL?
http://www.redlightponyville.com (though it's nsfw.... horribly nsfw !)
AdminCP > Themes > Your theme > Edit > global.css > and find the following class;
.trow1, .trow2 {
background: #EFEFEF;
border: 1px solid;
padding: 5px;
box-shadow: inset 1px 0 0px white;
-moz-box-shadow: inset 1px 0 0px white;
-webkit-box-shadow: inset 1px 0 0px;
border-color: white #E0E0E0 #E0E0E0;
}
In this class find;
-webkit-box-shadow: inset 1px 0 0px;
and Change it into;
webkit-box-shadow: inset 1px 0 0px #FFFFFF;
That originally didn't work, but after removing the dash, that fixed it!
You may only use box-shadow: inset 1px 0 0px #FFFFFF; and it will work in all browsers Smile