Iv'e looked online,
Iv'e learnt html css and a bit of javascript but I still am not sure how you code in expandables, any links to tutorials would be useful
Printable View
Iv'e looked online,
Iv'e learnt html css and a bit of javascript but I still am not sure how you code in expandables, any links to tutorials would be useful
Expandable whats?
Divs or iframes? Exandable iframes require javascript (most people get of dynamic drive) and expandable divs require that you don't use fixed size images.
expandable divs sorry
You can't use a border to create the edges of what he's done.
That tutorial is good and with a bit of common sense and logic you can built that into a more complex layout.
You can.
HTML Code:<style>
div.border
{
background-image: url(leftcorner.jpg);
}
div.border div
{
border-width: 1px 0px 0px 0px;
background-color: #000000;
}
div.border div div
{
background-image: url(rightcorner.jpg);
}
</style>
<div class="border"><div><div></div></div></div>