cstgfx
04-04-2009, 12:54 PM
Can anyone suggest me how to use CSS in Wordpress to make my templates in the resolution of 1024*768 the generalised templates which are available on Wordpress doesn’t fits to full screen size which I liked.
CkretAjint
04-04-2009, 01:08 PM
I would imagine something like this...
.classNameHere {
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
But it won't be self adjusting, as in you load the window, that's the size it is at. If you reduce or enlarge the window size once loaded the contain proportions remain the same as originally loaded. You will need something more dynamic for your code to do that, probably Javascript or something similar.