How to remove the title height
-
I just wanted to share a nice experience with how to remove the title height.
Start by using the code under FAQ
Insert a div with a class inside the last bit of code like so:
‘ . $post->post_title . ‘
‘; return ‘<div class=”remove-height”></div>’; }Apply CSS like so:
.remove-height {
margin: -40px 0;
}Done!
- The topic ‘How to remove the title height’ is closed to new replies.