Archived topic
Feature Image
9 replies · Started by Aun Raza on June 8, 2015
Hi
I have setup the very first image of my post to be appear as thumbnail. it works, but when i Click on "Read more" and full post is displayed, I can see Image on top of Post Header as well. how can i remove it from there?
http://linuxpitstop.com/extract-zip-files-on-linux/
regards
Aun
Absolutely - you can use this CSS:
.single .page-header-image-single {
display: none;
}
Thanks Tom :) Worked flawlessly
No problem :)
Sorry to bother, last question (hopes so :) )
i want to adjust the size of footer according to the rest of page. How can i do that? I have all addon purchased, please guide me if it can be done from there
Regards
Aun
The size of the footer text? I should add a font size option for the copyright area in the Typography add-on.
For now, you can do this:
.site-info {
font-size: 14px;
}
Adjust px as needed :)
How can i remove container other than sidebar and footer?
Regards
Aun
You want to remove the content container, but keep the sidebar and footer on the page?
Yes :)
e.g
http://linuxpitstop.com/category/linux-distros/
I want to remove "Linus Distro" from here,
Ahh, try this CSS:
.category .page-header {
display: none;
}
