Moderator
t-p
(@t-p)
look for this CSS rule in your theme’s style.css:
.entry p {
line-height:1.8em;
margin-bottom:15px;
}
Add this font property to it (if you don’t find it, then append it at the bottom of your css file):
.entry p {
line-height:1.8em;
margin-bottom:15px;
font:14;
}
Hi, I added that code at the bottom of my style.css, but nothing appeared to change?
/* Make all custom CSS changes BELOW this line
-----------------------------------------------------------*/
/* Example: Change the sidebar background to blue:
#sidebar {
background: blue;
}
*/
#sidebar ul li.widget ul {
margin: 0;
}
#content {
margin: 0 70px 0 30px !important;
}
.single-post-meta {margin-bottom:15px;}
#footer{
display:none;
}
#wrapper, #footer {
-moz-box-shadow: 0 0 0 white;
-webkit-box-shadow: 0 0 0 white;
box-shadow: 0 0 0 white;
}
#navigation {
float:left;
}
#content.no-sidebar {
width: 700px;
}
body {
font-family: Helvetica, Arial, sans-serif;
}
.entry p {
line-height:1.8em;
margin-bottom:15px;
font:14;
}
.entry p {
line-height:1.8em;
margin-bottom:15px;
font-size:14px;
}
No problem. You were already half-way there! 🙂