Re: http://www.togel.co.uk
How can I get a thin black border around the site (at the top of the header, left of the left block etc) Thanks
Adam
How can I do this?
in Backend:
Admin > page layout
add a name in the class-field of "all blocks" e.g. myborder
Admin > default css
add
if that dosen't work, you need to add classes in each field of "left", "right", "header" and "footer". then you need to add in your default css
one of that two ways will do it
Admin > page layout
add a name in the class-field of "all blocks" e.g. myborder
Admin > default css
add
Code: Select all
.myborder { border: 1px solid #000000; }
Code: Select all
.left { border-left: 1px solid #000000; }
.right { border-right: 1px solid #000000; }
.header { border-top: 1px solid #000000; }
.footer { border-bottom: 1px solid #000000; }
in default-css
Code: Select all
body {
....
margin-top: 10px;
}