Horizontal lines not showing on posts
-
Hi there,
I use the theme Radiate and I’ve added horizontal lines to separate text using <hr> and <hr /> but they don’t seem to appear.
Ive also tried adding this code in the css which according to other threads should fix the issue, although it does not here.
hr { display:none; }Any help would be greatly appreciated. Thanks
The blog I need help with is: (visible only to logged in users)
-
The tag for the horinzontal line is only
<hr>
Example:<h1>HTML</h1> <p>HTML is a language for describing web pages.</p> <hr> <h1>CSS</h1> <p>CSS defines how to display HTML elements.</p>See here for the result:
http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_hr_test -
Do you have a post or page with the tag for the horizontal line?
Note that with the CSS rule you wrote above
hr { display:none; }the horizontal line doesn’t show up.
-
Try with this:
<h1>HTML</h1> <p>HTML is a language for describing web pages.</p> <hr> <h1>CSS</h1> <p>CSS defines how to display HTML elements.</p>(in a draft)
And delete the CSS rulehr { display:none; } -
-
Hi,
I just tested this CSS and it worked:
hr { background-color: #000000; }The colour of the horizontal rule is currently set to white — which won’t show up against your page. Replace ‘#000000;’ in my code above with any colour you like.
You can add it to the CSS module in your Customizer.
Let me know how you get on.
-
-
-
-
-
-
Hi all! I have this same issue. Just tried to update CSS in my customizer with a “black” color but am not seeing any change yet. Probably as I have no idea how to do CSS. Would some kind soul please let me know what is off with the following:
/*
Welcome to Custom CSS!To learn how this works, see http://wp.me/PEmnE-Bt
*/
/*
My style changes
hr {
background-color: #040404;
}
*/ -
@eimilia
You are not using the same theme as the person who commenced this thread. All CSS editing is theme specific editing available only to those who have the required upgrade. More to the point is that we require you to click this link and start your own thread please https://en.forums.wordpress.com/forum/css-customization#postform -
Hi eimilia,
Please start a new thread for your question and tag it with modlook if you need help from a member of staff. Once you’ve so, we’ll be happy to help.
Thanks!
- The topic ‘Horizontal lines not showing on posts’ is closed to new replies.