WebsiteBaker Community Forum

WebsiteBaker Support (2.8.x) => Templates, Menus & Design => Topic started by: Ogierini on June 23, 2009, 02:45:04 PM

Title: a line in the middle of the page to spread the right from the left side
Post by: Ogierini on June 23, 2009, 02:45:04 PM
Hi guys,

I have transformed a joomla template into wb. I think it works quite ok now, but what I would like is a line in the middle of my page to spread the right from the left side. I tried it with the css command for td
Code: [Select]
td {border-left-width: 1px;
    border-left-style: solid;
    border-left-color: #333333;
}
but afcourse than I get a line left and right. I would like one just in the middle.....
Any Ideas????

Kind regards Irene
Title: Re: a line in the middle of the page to spread the right from the left side
Post by: BerndJM on June 23, 2009, 03:10:22 PM
Hi,

give the td a class
Code: [Select]
<td class="left_border"> ....and style this class in the css
Code: [Select]
.left_border {
   border-left-width: 1px;
   border-left-style: solid;
   border-left-color: #333333;
}

Regards Bernd
Title: Re: a line in the middle of the page to spread the right from the left side
Post by: Ogierini on June 23, 2009, 08:12:39 PM
Thanks Bernd!
It worked.
Kind regards Irene