2 replies [Last post]
thoroprod
thoroprod's picture
Offline
Regular
Last seen: 9 years 24 weeks ago
Timezone: GMT-5
Joined: 2012-08-30
Posts: 35
Points: 45

i have a footer with an image and text, which for some reason are not aligned equally
what is wrong???

here is the code:

<div class="footer">
			<a class="left" href="http://www.thoroprod.com"><img src="images/thoro.png" width="25"> <span>THORO PRODUCTIONS, INC.</span> &copy; 2013 THORO PRODUCTIONS&trade; ALL RIGHTS RESERVED. </a>
			<a href=""><img src="images/logo2.png" width="25"></a>
			<a href="http://www.youtube.com/thoroprod1"><img src="images/youtube.png" width="25"></a>
			<a href="http://www.twitter.com/rexmakesbeats"><img src="images/twitter.png" width="25"></a>
			<a href="http://www.facebook.com/thoroprod"><img src="images/facebook.png" width="25"></a>
		</div>

thoroprod
thoroprod's picture
Offline
Regular
Last seen: 9 years 24 weeks ago
Timezone: GMT-5
Joined: 2012-08-30
Posts: 35
Points: 45

/* Footer Style

/* Footer Style */
.footer{
	position:fixed;
	bottom:0px;
	left:0px;
	width:100%;
	font-size:13px;
	background:#000;
	height:20px;
	padding-bottom:10px;
	text-transform:uppercase;
	z-index:4;
}
.footer a{
	padding:5px 10px;
	letter-spacing:1px;
	text-shadow:1px 1px 1px #000;
	color:#ddd;
	float:right;
}
.footer a:hover{
	color:#fff;
}
.footer a span{
	font-weight:bold;
}
.footer a.left{
	float:left;
}

gary.turner
gary.turner's picture
Offline
Moderator
Dallas
Last seen: 2 years 13 weeks ago
Dallas
Timezone: GMT-6
Joined: 2004-06-25
Posts: 9776
Points: 3858

Link?

Could you upload your page to a public url; say a directory on your site?

cheers,

gary

If your web page is as clever as you can make it, it's probably too clever for you to debug or maintain.