Recent Topics

1 Jan 21, 2006 00:26    

Hi,

Is it possible to modify the template so that my Blog A has one color background, and Blog B/Linkblog has a different colored background?

Here's my URL:

http://www.michaelgaither.com/b2/blogs/multiblogs.php

Many thanks for any help,

- Michael

2 Jan 21, 2006 23:31

Yes, you'll just need to edit the fp02.css file. Find this part:

/* Styles for posts */
.bPosts {
	vertical-align: top;
	float: left;
	width: 66%;
	overflow: hidden;
}


and change it to this:

/* Styles for posts */
.bPosts {
	vertical-align: top;
	float: left;
	width: 66%;
	overflow: hidden;
        background: #00F;
}


Change the background color to whatever you want. Then find this part:

.bSideItem {
	margin-right: 20px;
	margin-left: 10px;
	margin-top: 8px;
	margin-bottom: 8px;
	border: 1px dashed #CCCCCC;
	padding: 8px;
}


and change it to this:

.bSideItem {
	margin-right: 20px;
	margin-left: 10px;
	margin-top: 8px;
	margin-bottom: 8px;
	border: 1px dashed #CCCCCC;
	padding: 8px;
        background: #0F0;
}

3 Jan 24, 2006 00:22

Perfect. Thanks so much.


Form is loading...