i want to float links in the footer to the left but when i write the code the links stick to the scroll bar but it should stick to the left of the footer

#footer {
		background:url(images/footer.jpg) no-repeat;
		clear:both;
		height: 83px;
		width: 970px;
	} 

#footer ul li a  {
		float: right;
}

Hi a.emara47,

remove the 'a' tag from your css declaration.

#footer ul li {
		float: right;
}

This might help you solve the issue.

Felixius

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.