How can I widen the Expound theme
-
Hello,
I paid for customization but have no clue how to widen my theme. I also want to remove tags from the 5 featured posts.
Thank you so much!
The blog I need help with is: (visible only to logged in users)
-
Hi!
Happy to help with this. Just a bit of clarification before we get started.
Regarding widening the theme, did you want to widen the theme across all pages (Homepage, About Me page, Blog Posts, etc) or just on certain pages (remove the sidebar from blog posts, for example)?
Regarding removing tags from your featured posts, you’re referring to tags like these shown on the demo, correct?
If so, you should be able to do that by placing the following code under Appearance -> Customize -> CSS:
.home .featured-content .entry-thumbnail-category, .home .featured-content-secondary .entry-thumbnail-category { display: none; } -
Thanks! Yes I would like to widen all pages on my blog since there is considerable space on each side I want to eliminate.
Regarding tags I wanted to remove them only from the featured posts because the tags block images to the post.
Thanks so much!
-
Yes I would like to widen all pages on my blog since there is considerable space on each side I want to eliminate.
Let’s start with this. Just paste the following under Appearance -> Customize -> CSS
@media (min-width: 1080px) { #page { width: 1200px; } #primary { width: 850px; } }That will only work on certain browser sizes so it won’t affect how your site looks on mobile devices or tablets. Once you have saved that bit of CSS, just test out your site and make sure everything is looking right. I gave it a test on my side, but I would just like to double-check!
Regarding tags I wanted to remove them only from the featured posts because the tags block images to the post.
This should do the trick!
.home .featured-content .entry-thumbnail-category, .home .featured-content-secondary .entry-thumbnail-category { display: none; } -
- The topic ‘How can I widen the Expound theme’ is closed to new replies.