Is there anything wrong with:
Just wondering as I'm using a hosting service for a WoW guild website (one of those WYSIWYG editor jobbies), the customisation is pretty good overall but the width is bugging me. There is a box where you can input your desired width, although there is also a custom CSS box aswell. Now I want a minimum of 1000px but i dont want it fixed to that, I'd like it to scale up with resolution also. I think the preset width and the CSS are conflicting but I wanted to check if it was my CSS to blame first!
Code:
#container
{
min-width: 1000px;
max-width: 80%;
margin: auto;
}
Just wondering as I'm using a hosting service for a WoW guild website (one of those WYSIWYG editor jobbies), the customisation is pretty good overall but the width is bugging me. There is a box where you can input your desired width, although there is also a custom CSS box aswell. Now I want a minimum of 1000px but i dont want it fixed to that, I'd like it to scale up with resolution also. I think the preset width and the CSS are conflicting but I wanted to check if it was my CSS to blame first!