Alternate background in posts

Started by dumbelljunkie, June 04, 2007, 05:12:26 PM

Previous topic - Next topic

dumbelljunkie

I would like the posts split in 2 backgrounds; one for the post itself and the other for the user information. 

What is the best way to achieve that ? Is a post already in 2 parts with the same color or do you have to manually split it in 2 ?

Thnx :)
SMF 1.1.2 Joomla 1.0.12 Bridge 1.1.7

Gurnk

The post is split into two sections. In Display.template.php, find this:

<td valign="top" width="16%" rowspan="2" style="overflow: hidden;">

Add the color as a background color to that table. Such as

<td valign="top" width="16%" rowspan="2" style="overflow: hidden;" bgcolor=#FFFFFF>

dumbelljunkie

Awe thnx :)

Is there no way to set the BG in styles.css ?
SMF 1.1.2 Joomla 1.0.12 Bridge 1.1.7

Gurnk

You can make a class in the style sheet, but you will just have to write class="white_table" again in the table HTML, so this way saves time and space.

N3lson

Quote from: dumbelljunkie on June 04, 2007, 05:12:26 PM
I would like the posts split in 2 backgrounds; one for the post itself and the other for the user information. 

What is the best way to achieve that ? Is a post already in 2 parts with the same color or do you have to manually split it in 2 ?

Thnx :)

Display.template .... find and replace

// Show information about the poster of this message.
echo '
<table width="100%" cellpadding="5" cellspacing="0" style="table-layout: fixed;">
<tr>
<td valign="top" width="16%" rowspan="2" style="overflow: hidden;">
<b>', $message['member']['link'], '</b>
<div class="smalltext">';

for this


// Show information about the poster of this message.
echo '<div class=alt>
<table width="100%" cellpadding="5" cellspacing="0" style="table-layout: fixed;">
<tr>
<td valign="top" width="16%" rowspan="2" style="overflow: hidden;">
<b>', $message['member']['link'], '</b>
<div class="smalltext"></div>';


Style.css

.alt
{
background-color:#CCCCCC
}


Or another color you like ou maybe  background image...
I´m Portuguese Yeah

dumbelljunkie

SMF 1.1.2 Joomla 1.0.12 Bridge 1.1.7

Advertisement: