Theme4Press › Forums › evolve › Decrease white space above and below page title › Reply To: Decrease white space above and below page title
#18630
|
Hi Nicem,
Thanks for writing in,
If you wish to suppress the extra around the titles, so you can add following code under Appearance > Theme Options > Custom CSS:
1 2 3 4 5 6 7 8 9 10 11 12 |
.page .entry-content { margin-top: 25px; } .page h1.entry-title { margin: -10px 0px; } .page #content h3 { margin-top: 0px !important; } |
Thanks.