Nieuw lid |
|
Hey,
Ik heb 2 knoppen onder elkaar en wil deze naast elkaar weet iemand hoe ?
Mijn code:
CSS
a.mainlevel:link, a.mainlevel:visited {
display: block;
background: url(images/send1.gif) no-repeat;
height: 30px !important;
width: 85px;
}
a.mainlevel:hover {
background: url(images/send2.gif) no-repeat; color: #FC6401;
}
a.stop:link, a.stop:visited {
display: block;
background: url(images/stop2.gif) no-repeat;
height: 30px ;
width: 85px;
left-margin: 50px;
}
a.stop:hover {
background: url(images/stop1.gif) no-repeat; color: #FC6401;
}
HTML
<div align="center"><a href="#" class="mainlevel" onclick="write1()"></a></span><a href="stop.php?code=<? echo $code;?>" class="stop" ></a></div>
CSS a.mainlevel:link, a.mainlevel:visited { display: block; background: url(images/send1.gif) no-repeat; height: 30px !important; width: 85px; } a.mainlevel:hover { background: url(images/send2.gif) no-repeat; color: #FC6401; } a.stop:link, a.stop:visited { display: block; background: url(images/stop2.gif) no-repeat; height: 30px ; width: 85px; left-margin: 50px; } a.stop:hover { background: url(images/stop1.gif) no-repeat; color: #FC6401; } HTML <div align="center"><a href="#" class="mainlevel" onclick="write1()"></a></span><a href="stop.php?code= <? echo $code;? >" class="stop" ></a></div>
Ze staan onder elkaar en moeten naast elkaar weet iemand hoe ?
Dimby
|