By Jeff Suddaby on Wednesday, 11 June 2014
Posted in General Issues
Replies 3
Likes 0
Views 540
Votes 0
Hi,

How do I remove the extra space above the title bar of the blog post at http://cast.cloudaccess.net/ (see attached screenshot)?

TIA - Jeff.
hey jeff,
there are actually 2 things influencing the space above the post.
the first would be the easyblog header - if you want to remove this one just add the following code to your template's custom css file:


#ezblog-head {
display: none;
}


after applying this you'll still see space on top, that one is coming (next to the space at the sides and bottom) from your current joomla template.
if you wish to get rid of this as well use this code:


.tm-system-white .tm-content {
padding: 0;
}


with both codes in place the whole surrounding space will be gone. hope that helps and have a nice day
·
Wednesday, 11 June 2014 01:19
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks Alex. That's just what I was wanting!
·
Wednesday, 11 June 2014 01:37
·
0 Likes
·
0 Votes
·
0 Comments
·
Well done Alex
·
Wednesday, 11 June 2014 01:50
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post