Right now, if I place a hr, the code looks like this:
<hr style="width: 100%; height: 2px;"/>
Can this be changed?
I searched all the docs but didn't find anything.
Thierry
<hr style="width: 100%; height: 2px;"/>
Can this be changed?
I searched all the docs but didn't find anything.
Thierry
RE: How can I change the code for <hr ...>?
A workaround that might help some is to create either:
body hr { margin:0; padding:0; border:0; border-top:1px solid red; height:0; }
or
.classname hr { margin:0; padding:0; border:0; border-top:1px solid red; height:0; }
whatever you are using...
just change the 1px, solid and red to your liking.
When you now click on the ruler button you should get a ruler to your liking....
Works for me....
RE: How can I change the code for <hr ...>?
Thierry