Page Width

Page Width

by Rogier Noort -
Number of replies: 1
Hi,

Through Chameleon I changed the page width of the whole site (983px), this instead of the 100% which it normally has.

This looks great, but the Chat is letting me down.
After opening up, the frameset opens pages within the frames with the DIV #PAGE attribute, which I set to 983px, this, again, instead of 100%.

So the pages in Chat have a fixed width, and this doesn't work or look good.

I need to change the page width of the Chat back to 100%, but I cannot find an entry in the PHP pages used by the Chat module where the #PAGE is used, if I can find that, I can add a line in the CSS and fix the problem.

The question is:
Where can I find the code which makes up the page (div id's) of the chat?


cheers,

Rogier
Average of ratings: -
In reply to Rogier Noort

Re: Page Width

by Top Up Teaching Tutor -
Hello,

Better late than never. I had a similar problem.

Simply add

#mod-chat-gui_header_js-users #page {
width:100%;
}

into your css. It changes the #page solely on the pop up chat window, leaving other instances of #page alone.

Also consider installing firebug add on in Firefox (or similar) as it's really useful for finding ids and classes.

Hope this helps