Elxis CMS Forum
Support => General => Topic started 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
-
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
/* 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
-
Thank you