Joeseven
Member
Posted 7 months ago #
I have a new page built using Twenty Ten. I am not using the site for blogging and do not want comment; I have tried every setting I can find (and there's a bunch!) but cannot remove the field in upper right corner of all my pages that shows Archives, Meta, and a search box. What am I not doing?
Don't edit the Twenty Ten theme. First create a child theme for your changes.
for static pages, there is a 'one-column' page template in the theme.
if you need to remove the sidebar from index and archive pages, you need to start by creating a child theme http://codex.wordpress.org/Child_Themes, then go through all the templates (index.php, archive.php, etc) and remove <?php get_sidebar(); ?>; and adjust the css class of the #container div, as you'll see it in onecolumn-page.php, to stretch the remaining content to the full width.
Joeseven
Member
Posted 7 months ago #
Thank you for the help. . .I am not versed in CSS and will need to study child themes - is there a tutorial or an information page that will help me learn this?
Please see the links posted above.