stephwise 0 Report post Posted October 10, 2011 So, I have a kind of funny question - is it possible to adjust the widths of different pages? Basically, we would like to use the site to host pages for the iframes in facebook - but the global width of the website pages is 960, and the width of the frame is 520. Anyone have any advice? Share this post Link to post Share on other sites
Rob 547 Report post Posted October 11, 2011 Can't the iframe fit within the main content area in a page? That way you could have one or two or even 3 sidebars if you wanted. The global width is a default setting, but by no means is it fixed. You need to go to your PlatformPro Settings to Layout Editor and use your cursor to grab and drag the edges of the site narrower or wider. You can also enter a different number below where it says 960. Former PageLines Moderator, Food Expert and Raconteur Share this post Link to post Share on other sites
stephwise 0 Report post Posted October 12, 2011 Let me re-phrase the question: I would like to set the width for a single page on my website. The rest of the website is set to 960. I would like to set the width of this page to 520 - how can I achieve this? Thanks! Share this post Link to post Share on other sites
kastelic 6 Report post Posted October 12, 2011 With CSS you could override it for one page. What you will need to do is get firebug or google chrome and inspect your document for any and all selectors that give the width. Then you need to find the page id ( in the body tag) and override each one with !important at the end like this: [code] .page-id-123 #page, .page-id-123 .content { width: 500px !important; } [/code] and so on.... Share this post Link to post Share on other sites
stephwise 0 Report post Posted October 12, 2011 Thank You!! Share this post Link to post Share on other sites