By Jeff Suddaby on Saturday, 20 September 2014
Posted in General Issues
Replies 3
Likes 0
Views 489
Votes 0
Hi,

At http://whazzat.org/the-wonder-blog.html ...

The post titles seem to have gone missing in the entry view. (see attached postTitleMissing screen shot)

Also - in a possibly-related issue - the vertical space between the first post and the EB toolbar is much too large in the frontpage view. (see attached extraSpaceBelowToolbar screenshot)

How do I fix this?

TIA - Jeff.
Hello Jeff,

It seems like your Joomla template is overriding the font color of the h1 tag. You can add the block of css codes below to fix this,


#ezblog-body .blog-read .blog-title {
color: #000 !important;
}
·
Saturday, 20 September 2014 01:12
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks Mark. That works perfectly!

Now, how do I get rid of all that extra space below the Toolbar - in both the frontpage and entry views?
·
Saturday, 20 September 2014 01:24
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Jeff,

You can try adding the block of codes below into your template's css file,


#ezblog-body #ezblog-posts .blog-header {
margin: 0 !important;
}

#ezblog-body #ezblog-posts .blog-post {
padding-top: 0 !important;
}
·
Saturday, 20 September 2014 01:29
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post