MyBB Community Forums

Full Version: custom stylesheets
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
For a theme what is custom stylesheets?

And for everything else what is custom stylesheets?
an additional CSS file with style declarations for classes, ids etc in it just like your global.css.

For a theme, you can make one using "Add Stylesheet" tab and assign required parameters.
For everything else create a simple text file using .css extension and add CSS codes in it, link to page from header / headerinclude this basic way (there are other ways too):

<link rel="stylesheet" type="text/css" href="mystyles.css" media="screen" />
(2012-12-23, 12:55 PM)effone Wrote: [ -> ]an additional CSS file with style declarations for classes, ids etc in it just like your global.css.

For a theme, you can make one using "Add Stylesheet" tab and assign required parameters.
For everything else create a simple text file using .css extension and add CSS codes in it, link to page from header / headerinclude this basic way (there are other ways too):

<link rel="stylesheet" type="text/css" href="mystyles.css" media="screen" />

ok tks, +rep