If there's no need for data to be posted back tho the server on the back button, you could use images instead. (and an input of type image for the submit button for consistancy)
Otherwise, you could get it to post to a server side script which can determine which button was pressed and proceed...
<div id="bar">
<span class="right">Text on the right</span>
<span class="left">Text on the left</span>
</div>
sometimes putting the left one above the right forces the right onto a new line, this way usually works for me.
easy, you do it in a stylesheet:
#submit
{
background-image: url(images/buttonimage.jpg); border-width:0px; width:100px; height:18px;
}
#submit:hover
{
background-image: url(images/buttonimage.jpg); border-width:0px; width:100px; height:18px;
cursor: hand;
}
and use this as the button code...
BVecause he asked for a solution using the onClick="" attribute of the input element. As this attribute requires a javascript expression as its value, I added it in.
Yeah i know the feeling, It's even worse trying to get the pages to display properly in all browsers.
All the options to do it are in css, but none of them are implemented correctly unfortunaetly.
There is another way mind, to do it, you don't define the center column:
<!DOCTYPE html PUBLIC...
Yes I see what you mean, its referenicing the file on the filesystem, not over http.
The property you need to use is the "REQUEST_URI" http request header. not sure how in ASP mind.
I thinks omethings causing an optiocal illusion on the page.
Although they look different sizes, on closer inspection form a screengrab and an image editor, they are in fact the same size.
This is the way i'd get the image in there
<table>
<!-- table stuff here -->
</table>
<img src="http://domain.com/background.jpg"
style="position: relative; top: -100px; left: -10px; z-order: -1">
you may have to fiddle with the top and left css attibutes to get it where you want it, but...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.