your body width is wayyyyyy to wide.
standard screen size is 1024 pixels x 768 pixels.
use this on your body to standardise 1em = 10pixels.
style="font-size:10px;margin:0;padding:0;"
use this on your canvas element(the first and only child element of the body) element for centering:
style="width:72em;margin:0 auto;"
these can also be put in your drupal styles.css which would be under :
drupal-site-root/sites/all/[your-theme-name-here]/styles.css
and this is how you woul put it in :
find and modify the body class to include the following css attributes :
body,html > body{ font-size:10px; font-family:sans-serif; padding:0; margin:0; }
find and modify the className for the hypothetical first-only-child of the body( i call mine canvas)
.canvas{ width:72em; margin:0 auto; }
More information about formatting options
Kinkless is a website about simple tools and ideas that help us work, play and create.
It is entirely the fault of Ethan Schoonover. Ethan is a photographer and geek based in Hong Kong. He’s fond of music. More about him here.
kinkless sitedesign is in err.
your body width is wayyyyyy to wide.
standard screen size is 1024 pixels x 768 pixels.
use this on your body to standardise 1em = 10pixels.
use this on your canvas element(the first and only child element of the body) element for centering:
these can also be put in your drupal styles.css which would be under :
and this is how you woul put it in :
find and modify the body class to include the following css attributes :
body,html > body{ font-size:10px; font-family:sans-serif; padding:0; margin:0; }
find and modify the className for the hypothetical first-only-child of the body( i call mine canvas)
.canvas{ width:72em; margin:0 auto; }