Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Help making width of page really be 100%… Re: Help making width of page really be 100%…

#68142
nosecreek
Member

It could be done in Javascript:

Code:
document.getElementById(‘element’).style.width = document.body.parentNode.scrollWidth + ‘px’;

Although it would be better with pure CSS. Not sure how that could be done. Generally I would try to avoid sites that are going to require horizontal scrolling. I can’t see your whole site on my computer.