For as old as the design is on HuntingMoon, it's still a decent design... Here's a few alterations I suggest to make it better for users with bigger screens.
Currently:
Remove from body tag:
Code:
style="min-width:1150px;max-width:1350px;"
Inline styling is bad. Mmmkay?
Finally, change the following css styling to:
Code:
#page1 {
min-width: 1150px;
max-width: 1350px;
width: 100%;
margin: 0 auto;
padding: 0;
}
Final result:
As you can see, same setup, just centered and much better on bigger screens.
