Home › Forums › Iconic One Pro Support › Another Post Width Query
- This topic has 1 reply, 1 voice, and was last updated 6 years, 11 months ago by mattallford.
- AuthorPosts
- December 22, 2017 at 9:38 am #5126mattallfordParticipant
Hi team,
I know this gets asked a bit, but I’m having trouble getting my desired outcome.
Under “static Front Page”, I have “your latest posts” selected. I also have some widgets defined in the main sidebar.
But I want my actual posts to use the full width of the screen, and not have the sidebar with the widgets.
I’ve entered the following in “Additional CSS”. This gets the desired outcome for my posts, but on my main front page, I no longer see the main sidebar.
.single-post .site-content { width: 95%; border: none; } .single-post .below-title-meta { margin-left: -2.1%; width: 105.2%; } #secondary { display: none; }
If I use the following, my front page looks good, and the posts are full width, but in each post the sidebar widget is awkwardly down the bottom of the post (underneath the comments box):
.single-post .site-content { width: 95%; border: none; } .single-post .below-title-meta { margin-left: -2.1%; width: 105.2%; }
How can I achieve my desired outcome?
Cheers.
December 22, 2017 at 9:46 am #5127mattallfordParticipantI think I’ve figured it out with the below.
.single-post .widget-area { display: none; } .single-post .site-content { width: 95%; border: none; } .single-post .below-title-meta { margin-left: -2.1%; width: 105.2%; }
- AuthorPosts
- You must be logged in to reply to this topic.