• I’m trying move the page title to the left margin, to align it with the Home button page. I don’t like the way it’s tabbed. Why is it doing this? Is it a blockquote code? https://www.putintowords.ca/?page_id=30

    I am a novice user of WordPress. I’m not a programmer and get lost in PHP, so please be as detailed as possible. Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Search this in your style.css file:

    .one-column #content {
        margin: 0px auto;
        width: 640px;
    }

    Change this to

    .one-column #content {
        margin: 0;
        width: 640px;
    }

    You can also change your width but if you want a right sidebar in the theme then make sure the ratio between them.

    Thread Starter depgirl

    (@depgirl)

    Thanks! That worked but before doing that in style.css I accidentally tried to modify something in rtl.css, and now I get an error message every time I try to modify something in style.css, even if it works in the end:

    Warning: Cannot modify header information – headers already sent by (output started at /home6/putintow/public_html/wordpress/wp-content/themes/twentyten/functions.php:1) in /home6/putintow/public_html/wordpress/wp-admin/theme-editor.php on line 89

    I reset the values in rtl.css but I still get this annoying error message. What should I do?

    This is what I tampered with in rtl.css:

    LAYOUT: Two-Column (Right)
    DESCRIPTION: Two-column fixed layout with one sidebar right of content
    */

    #container {
    float: right;
    margin: 0 0 0 -240px;

    Even though I reset the values, I still get this error message in Twenty Ten.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Left align Page title and text’ is closed to new replies.