Hello,
Does anyone have any idea how to change the color of the horizontal bar?
Thanks
do you man the <hr /> tag? if so you can style it like:
hr {
border-top:1px solid #000; border-bottom: none;border-left: none;border-right: none;
}
however this is inconsistent in IE so it’s often a better idea to add a div, for instance:
div {border-top:1px solid #000;}
div hr {display: none;}
...and the html would be
<div><hr /></div>
Another way is to create and style a chunk and call it in your content area like this {{separator}}
Hope that helps
www.9thwave.co.uk
WEB | DESIGN | PRINT