Elxis CMS Forum

Support => General => Topic started by: fiets-compleet on February 13, 2011, 11:05:32

Title: Dividers between articles
Post by: fiets-compleet on February 13, 2011, 11:05:32
I use template Ekebic.

On the frontpage I would like horizontal en vertical dividers between articles, is this possible

http://www.fiets-compleet.nl
Title: Re: Dividers between articles
Post by: nikos on February 14, 2011, 01:41:37
Even kebic who has created the template which you use could answer you better, one simple solution you could try is the following:

Open with and editor as PSPad the file customize.css into path templates/ekebic/css and at the end add this

Code: [Select]
/* custom front page style */
div.tablecell, div.blogcell {
width: 48%;
border-right: 4px double #74BBDB;
border-top: 1px solid #74BBDB;
padding-left: 2px;
}

Save the file and try to see how it looks. This which makes the vertical lines is border-right: 4px double #74BBDB; and giving various values in border color or border thickness or border style you can have various looks. And horizontal lines are controling by this border-top: 1px solid #74BBDB;

Look more about border style here: http://www.w3schools.com/css/css_border.asp
Title: Re: Dividers between articles
Post by: fiets-compleet on February 14, 2011, 19:47:09
Thank you