I am attempting to modify the appearance of Post pages, and was hoping you could help… Here’s what I’m looking to do:
1) Remove the hover/enlarge effects when hovering over post header/featured images.
2) Increase the size of post titles.
3) Disable the next/last slideout tabs on the left and right side of the page.
Thanks for your help. The support has been fantastic!
Hi,
1) Insert following code into the quick css field
.post-entry .image-overlay {
display: none !important;
}
2) Use following css code
.entry-content .post-title {
font-size: 20px;
line-height: 1.3em;
}
3) Delete following code in footer.php
//display link to previeous and next portfolio entry
echo avia_post_nav();
Thanks, Dude! I really appreciate the help.