line spacing – picture border – my mistake :(
-
Hi:
I was trying to made some changes in the style.css file in order to remove the grey box around every picture that I upload to my new site, but I broke something and I don’t remember where.
Q1: What parameter do I need to move to have a bigger line spacing in the normal article text?
Q2: What parameter do I need to move to remove the grey border of the uploaded pictures?
Thank you in advance…
Admin
For line spacing in article text, you need to modify the CSS codes located in line 388 in style.css. Specifically, modify the line-height property.
.entry-content p, .slider_post_entry p, .entry-content ul, .entry-content ol, .comment-entry ol{
font:normal 12px arial;
color:#2c2b2b;
line-height:20px;
}To remove the grey border, remove the
border
property in the CSS code on line 495 in the style.css file:.entry-content img{
border:4px solid #e3e3e3;
margin:5px;
}Though I strongly suggest you not to modify the theme’s
style.css
file directly. Use a child theme for modifications instead, so that your changes won’t be lost in the next update.Admin
Good to hear 🙂
Save yourself the trouble of sending the sixpack and send me some donation instead 😀
Viewing 5 posts - 1 through 5 (of 5 total)
- You must be logged in to reply to this topic.