Jump to content
Sign in to follow this  
stephwise

Different Page Widths

Recommended Posts

stephwise

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
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
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
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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×