WebsiteBaker Community Forum
WebsiteBaker Support (2.8.x) => Templates, Menus & Design => Topic started 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
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
-
Hi,
give the td a class
<td class="left_border"> ....
and style this class in the css
.left_border {
border-left-width: 1px;
border-left-style: solid;
border-left-color: #333333;
}
Regards Bernd
-
Thanks Bernd!
It worked.
Kind regards Irene