Could i put all this info in a css file and still code

<div id="submenu1"> </div>

if yes how?

#submenu1 {
	position:absolute;
	top:530px;
	left:167px;
	width:auto;
}
#submenu2 {
	float:right;
	position:absolute;
	padding-left:10px;
	border-left:thin;
	border-left-color:#000;
	border-left-style:solid;
	border-left-width:thin;
	top:530px;
	left:487px;
	width:auto;
}
#submenuline {
	position:absolute;
	width:525px;
	top:535px;
	left:167px;

I figure it out, I just could type

#submenu1 {
	position:absolute;
	top:530px;
	left:167px;
	width:auto;
}
#submenu2 {
	float:right;
	position:absolute;
	padding-left:10px;
	border-left:thin;
	border-left-color:#000;
	border-left-style:solid;
	border-left-width:thin;
	top:530px;
	left:487px;
	width:auto;
}
#submenuline {
	position:absolute;
	width:525px;
	top:535px;
	left:167px;

in the css and remove it from my html

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.