Recent Topics

1 Feb 17, 2009 04:28    

My b2evolution Version: Not Entered

How do I make b2evolution allow me to use my own CSS tags. The blog only seems to allow the original CSS tags to be used. bItemRow works but bItemRow2 won't work for example.

Thanks

2 Feb 17, 2009 04:47

I don't know what skin you are using, but you can edit all the related css files to your hearts content.
The main css file is usually style.css
<link rel="stylesheet" href="style.css" type="text/css" />
and it loads all related css
Where you find them is usually as follows, which you will find at the top of your skin's style.css
@import url("../../rsc/css/basic.css"); /* Import basic styles */
@import url("../../rsc/css/img.css"); /* Import standard image styles */
@import url("../../rsc/css/blog_elements.css"); /* Import standard blog elements styles */
@import url("../../rsc/css/forms.css"); /* Import default form styles */
@import url("../../rsc/css/comments.css"); /* Import default comment styles */

3 Feb 17, 2009 04:55

I am editing the style.css thats in my skin folder. The problem is I can't make my own CSS classes. It ignores them for some reason. I can edit the CSS classes that were originally in the skin. I am using the custom skin that comes with b2evolution, I am just tweaking it.

4 Feb 17, 2009 05:22

You have to call your new css class from within your files.
ie
<div class="bItemRow">blah blah</div>
<div class="bItemRow2">blah blah</div>


Form is loading...