After removing navbar, still there is some empty space remain above the header.
This space can be used for displaying add, social networking buttons, navigation bar and much more...
here is the simplest method of getting rid of this empty space above header.
{
margin-top: -40px !important;
}
</style>
This space can be used for displaying add, social networking buttons, navigation bar and much more...
here is the simplest method of getting rid of this empty space above header.
1. Go to the ---> TEMPLATE
2. Click---> EDIT HTML and then proceed.
3.Press CTRL + F to open search dialogue box.
4. Type </head> in search box
generally you will find it between line 650-700
5. then paste the following code just above </head>.
<style type='text/css'>
.content-inner {
margin-top: -40px !important;
}
</style>
No comments:
Post a Comment