Recent Topics

1 Dec 20, 2009 00:10    

My b2evolution Version: Not Entered

I have CSS for my overall site, and want to style the b2e content the same way.

One way would be to simply copy the relevant CSS from my site into the CSS for the skin. The class names are different, but it wouldn't be that hard to crossreference them.

Is there another way? What would it take to restyle the b2e output to use the class names that already exist in my main site's CSS? For instance, have the title show up as <P class = "title"> rather than <H1>?

2 Dec 20, 2009 01:11

it doesnt take much to replicate a css design to a b2 skin.
if you give a link to your site or the skin you use i may be able to give you actual tips.

But for example, take the most basic skin "custom", it has only 1 display handler, index.main.php, you will see almost everything there.

like it has a line that says

<h3 class="bTitle"><?php $Item->title(); ?></h3>

bTitle is the class to modify the post title styles as you can see.So you can either change the class to include your own or apply your changes to the existing class.You will see everything in there, all is pretty much explained with comments near by


Form is loading...