You haven't upgraded your live demo. Even without that, you could do:
Code:
#imgdsc0 {
position:relative;
top:-675px;
}
You might want to get rid of:
Code:
slides.no_added_linebreaks=1;
To give yourself more room to play with up at the top. There appears to be enough there now in FF, but not in Opera or IE. This may require some adjustment of the background and/or dimensions of #master0.
Now, if you were using the updated script, you could use:
Code:
#desc0 {
position:relative;
top:-675px;
}
instead, and also be able to style its width and left, because that's a division, the other is a span. Knowing a bit about HTML and css helps. You don't need:
Code:
div#show3 {
background-color:#efefef;
width:140px;
margin:0 auto;
border:1px solid #444444;
}
div#show3 table td, div#show4 table td {
height:24px;
background-image:url('38.gif');
}
div#show4 table td {
background-image:url('40.gif');
}
div#show3 table input, div#show4 table input {
outline-style:none;
}
or:
Code:
<!--[if IE]>
<style type="text/css">
div#show3 table td, div#show4 table td {
height:21px;
}
</style>
<![endif]-->
because you are not using them.
Bookmarks