treehouse : what would you like to learn today?
Web Design Web Development iOS Development

[Solved] Change Width of Specific Page

  • I have a page in wordpress using the page.php. I have exlcuded the sidebar on this page using a bit of code. Now I need to change the size of the post area from 650 px to about 800px. But I only want to do it on page_id=826

    So if it is this particular page, then narrowcolumn should be 800 else 650
  • nevermind I figured it out.


    <?php if(is_page('826')) {
    ?> <style type=\"text/css\">

    .narrowcolumn {float:left; display:inline; width:900px;overflow:hidden;padding:0; font-size:1.2em; margin:0;}

    </style>

    <?php } ?>