Creating vertical seperators


Author Message
Anna Jane

Posted: 8/3/2009
Quote message 

Hello,
Basically as a fairly new user to Artisteer, I was wondering if there was any way of including vertical line separators between each column? Or is this only possible with code? I'd be very appreicative advice on how to do this, whether through the program itself or code-editing. Thanks xxx
 
Garry

Posted: 8/3/2009
Quote message 

I think there is no way to insert vertical line separators in Artisteer but you can do it by having border on one side of your block. Following is an example to insert border right to sidebar:

border-right:1px solid #999999;
 
Martin

Posted: 8/5/2009
Quote message 

Hi, thanks for the pointer.

It took me a while to find what exactly to change ... I couldn't find anywhere on artisteer itself - so I changed the style.css file that is part of the wordpress theme files. And it works.

I actually added it as a RHS border on the main column ... the actual location in the CSS file was:-

.art-contentLayout .art-content
=======================

I added the following lines to get a grey dashed vertical separator.

border-right-style: dashed;
border-right-width: 1px;
border-right-color: #CECECE;

Hope this is of some help.
:-)