Few Quesions, CSS help and Free JSP Hosting

Associate
Joined
20 May 2007
Posts
441
Hey everyone

Does anyone know of any good free hosts running tomcat?? Wanted to just host a website Im knocking up for a uni project.

Also I want to have some images to look like tabs but the order of them aren't right, ones on top of the other which aren't right.

Code:
<div class="tabTopStandard">
			<a href="../pages/main.html"><img src="../images/tabToDo.png" alt="To-Do Tab" class="tabStandard tabFirst" /></a>
			<a href="../pages/mainCalendar.html"><img src="../images/tabCalendar.png" alt="Calendar Tab" class="tabStandard" /></a>
			<a href="../pages/mainAccount.html"><img src="../images/tabAccount.png" alt="Account Tab"  class="tabAccountPos" /></a>
		</div>

and the CSS is

Code:
.tabTopStandard
{
	width:100%;
	height:30px;
}

.tabFirst
{
	margin-left:0px;
	padding-left:20px;
}

.tabStandard
{
	margin-left:-11px;
	float:left;
	border:none;
}

.tabAccountPos
{
	float:right;
	padding-right:20px;
	border:none;
}

example is here http://wheretodo.gauntface.co.uk/pages/main.html

Thanks in advance for any help
 
Back
Top Bottom