Hi, as per my question, how to move the category meta from before title to after title at main blog page?
Hey!
Try adding this code to the Quick CSS:
.html_elegant-blog #top span.blog-categories.minor-meta {
position: absolute;
left: 0;
right: 0;
margin: 0 auto;
top: 65px;
}
.html_elegant-blog #top header.entry-content-header {
position: relative;
}
.html_elegant-blog .av-vertical-delimiter {
margin-bottom: 40px;
}
.html_elegant-blog #top .post-entry .post-title, .html_elegant-blog .avia-content-slider .slide-entry-title {
padding-bottom: 0;
}
Cheers!
Josue
Perfect! Thanks man.
You are welcome, just one note, this is a CSS fix, meaning that if a title is 2 or 3 lines long it may not look good, in that case you’d need to edit the theme files (/includes/loop-index.php) – http://screencast.com/t/wQ6psMyw
Regards,
Josue
Perfect Josue. I prefer edit the theme files a little using child theme! Thanks so much for your help!
You can do that by duplicating:
/single.php
/includes/loop-index.php
To your child theme directory.
Got it man! Thanks a lot.