Adjust width and height of hr
in Shortcodes
How do I set the width of a horizontal line? I know there's default (which is too long) and short version (which is too short). Is it possible to set it to 50%?
Comments
you would have to use css inline with HTML:
<hr style="width:300px;" />
thanks