Viewing 13 replies - 1 through 13 (of 13 total)
  • is that in the dashboard when editing/writing static pages or on the public side of the site?

    you might need to edit the html structure of the template; or adjust the css for the page.

    please post more details:

    – name and download link of your theme;
    – link to your site.

    Thread Starter sebbero

    (@sebbero)

    http://anchoriansfc.co.uk/test/test-page/
    Yes this in dashboard when trying to edit page and then when displays on website it more central.

    Twenty Ten 1.4 by the WordPress team this current theme i’m using.

    for hte editor width, Twenty Ten uses editor-style.css;

    try to change it there:

    html .mceContentBody {
    	max-width: 640px;
    }

    in style.css, for pages without sidebar, this style is restricting the page content width:

    /*
    LAYOUT: One column, no sidebar
    DESCRIPTION: One centered column with no sidebar
    */
    
    .one-column #content {
    	margin: 0 auto;
    	width: 640px;
    }
    Thread Starter sebbero

    (@sebbero)

    sorry not sure where would need to change this. Can I do this for individual pages?
    Here what my style.css

    [large amount of CSS code moderated – a link to your site is enough to access the stylesheets]

    where would need to change this

    general, for all single column-pages, you would find the suggested code (which was a straight copy from style.css of Twenty Ten) and change it there (not too far from the top of style.css).

    Can I do this for individual pages?

    yes – add the ‘body_class’ output for that page before the code;
    http://codex.wordpress.org/Function_Reference/body_class

    one of the body_classes for a static page is .page-id-123 where the number is the page ID.

    example (for your test page):

    .page-id-471 .one-column #content { width: 940px; }

    add this either at the end of style.css;
    or use a custom css plugin for any edited styles – for instance the custom css section of the ‘jetpack’ plugin.

    Thread Starter sebbero

    (@sebbero)

    ok I will give this a go and have a look using the test page.

    Thread Starter sebbero

    (@sebbero)

    I Have added line as you suggested it give me chance to write more on page in editor but doesn’t show this one web page it self.

    Do I have edit it any where else for it display more on web site itself?
    Below is copy of style.css

    [ Moderated: Use pastebin.com for that many lines or just post a link to your CSS file. ]

    please add the style back into style.css (at the very end):

    .page-id-471 .one-column #content { width: 940px; }

    and try to clear the browser cache to see the results immediately:

    press ‘ctrl f5’ or ‘reload’ or check the instructions for your browser.

    Thread Starter sebbero

    (@sebbero)

    Can I can the font size of writing on page and if so how would I do this?

    for general formatting problems, try working with a broser inspection tool such as Firebug;
    or ask at a css forum like http://csscreator.com/forum

    Thread Starter sebbero

    (@sebbero)

    Where can I find the page ID number for certain page?

    Where can I find the page ID number for certain page?

    Go to All Posts (or pages). Hover your mouse over the post’s name or page’s name. Notice the url that appears at bottom of browser window like :

    http://wordpress.org/wp-admin/post.php?post=4503&action=edit

    That 4503 is the ID. If you do not like this simple method, use some plugin like this one :

    http://wordpress.org/extend/plugins/reveal-ids-for-wp-admin-25/

    I can not give warranty about plugin’s function. I never used any plugin for the purpose to be honest.

    Thread Starter sebbero

    (@sebbero)

    Thanks found the page ID number now.

Viewing 13 replies - 1 through 13 (of 13 total)
  • The topic ‘Use whole page from left to right’ is closed to new replies.