MyBB Community Forums

Full Version: Change stylesheets order
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello.
I've a problem with style sheets:
I want to use a reset stylesheet like this, so I added it in Themes > StyleSheet (# Add Stylesheet) section,
but when I refresh my home page, I had lost all of the styles ..
Because firstly, global.css was included, and after it, reset.css included::
<link type="text/css" rel="stylesheet" href="http://localhost/prop_my/css.php?stylesheet=13" />
<link type="text/css" rel="stylesheet" href="http://localhost/cache/themes/theme5/reset.css" />
How can I change the order? for include reset.css firstly and after it include my global.css style sheet...
(I want a code like thisSmile
<link type="text/css" rel="stylesheet" href="http://localhost/cache/themes/theme5/reset.css" />
<link type="text/css" rel="stylesheet" href="http://localhost/prop_my/css.php?stylesheet=13" />

Thank you very much ...