Sight theme – No full page layout?
-
Is it possible to create a page with this theme that utilizes the full width without the widget area?
Thank you.
The blog I need help with is: (visible only to logged in users)
-
Sight theme doesn’t support any page templates. So there is no way to get a full width layout.
Even if you remove all the widgets, the theme displays Archives and Meta widgets in the right sidebar.
Check if you like any of the 74 free Full Width Template themes: https://theme.wordpress.com/themes/features/full-width-template/?sort=free
-
You could accomplish this with some custom CSS, since you have the upgrade.
For example, let’s say you wanted to make the In the Media and Links pages full-width, you could add something like this to hide the sidebar and widen the content area.
.page-id-1559 #secondary, .page-id-298 #secondary { display: none; } .page-id-1559 .site-content, .page-id-298 .site-content { width: 95% }You can get the page ID by looking at body tag when viewing the page source in a browser, adding additional pages you’d like to target separated by commas in each declaration, following the example above.
If you need further CSS help, please feel free to post in our CSS Customization forum.
-
- The topic ‘Sight theme – No full page layout?’ is closed to new replies.