I understand the basics of how to install a DIV layout, such as the fact that you must inplement your own profile ID. However, beyond this fact, I am confused as to how to quicken the DIV installation, and to how I can arrange my music player and make the layout look more interesting.
DIV Layout Help Needed?deleted myspace
divs, believe it or not are quite simple
put something like this under the %26lt;body%26gt; tag
%26lt;div id="Layer1"%26gt;
then just style it with css
#Layer1 {
position:absolute;
left:127px;
top:14px;
width:1px;
height:169px;
z-index:1;
}
that will define position, height and width, you can also add things like -
padding: 10px 15px 5px 20px;
background-image:url(images/yourimage....
each layer is started via the css using "{" and "}" ( without the speech marks )
lines like this
padding: 10px 15px 5px 20px;
background-image:url(images/yourimage....
can be added between those marks to define that perticular div, each new div needs to be defined like the 'layer1' example
there is a whole lot more, for page layout, have a look here http://htmldog.com/guides/cssadvanced/la... - there are also lots more tutorials on that site for css, also you could try asking these guys http://www.webforumz.com/
the only real learning is to know what the css 'commands' are and what they do, i would encourage you to experiment
No comments:
Post a Comment