I need to add a black divider bar between paragraphs.
How can I?
The website is:
http://votepbsc.com/state-executive/governor/issues/economy-and-jobs/
Pippin Williamson answers:
For that page at least, add this to your css:
.text-box tr {
border-bottom: 1px solid #000;
}
zachitn comments:
Where
Pippin Williamson comments:
Go to Appearance >> Editor in your wordpress dashboard, then select "style.css" and place it at the very bottom.
zachitn comments:
I added it in but that adds a black bar to the bottom of every text box ....
Pippin Williamson comments:
Then do it like this for just the paragraphcs:
.text-box p {
border-bottom: 1px solid #000;
}
zachitn comments:
No that put lines all over the pages. Any other solution?
Pippin Williamson comments:
Sure, let's just limit it a little more:
.text-box tr p {
border-bottom: 1px solid #000;
}
Now it should only show on the paragraphs
zachitn comments:
I want to add the bar between the paragraphs.