MyBB Community Forums

Full Version: Global.css overwriting Custom.css
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
My global.css is overwriting a rule in my Custom.css even though, my custom.css load order is zero and my global.css load order is one. Why is it doing this? I would usually put !important (as it does work, I tried). I shouldn't have to put that and to me, that looks sloppy when it's your own website (no offense to anybody that does this).

Down below, you can see the photos I've taken to prove the problem. Thanks in advance.
(2014-12-03, 11:08 PM)ErraticFox Wrote: [ -> ]My global.css is overwriting a rule in my Custom.css even though, my custom.css load order is zero and my global.css load order is one.

so you are loading custom.css first and global.css after it... obviously the one loaded at the last takes precedence... Toungue

load custom.css as the last stylesheet in the list...
Try with:

.promptLogin a:link,
.promptLogin a:visited {
 ...
 color: #fff;
 ...
}