Tech Support Forum banner

Logo linking to homepage

783 Views 1 Reply 2 Participants Last post by  mcorton
Hi,
This is my first forum :)
I am building a website: BLOODYGLOVES.com - Fight Predictions: Blog

I put a custom logo in and I am now trying to link the logo to my homepage and everytime I try it stuff the content

Any help will be great:

My current HTML is:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<title>%%TITLE%%</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="News, opinions, fighter payments and reviews on everything UFC MMA"/>
</head>
<body>
<div id="wrapper">
<div id="header">
<div id="logo"></div>
%%MENU%%
</div>
<div id="banner">
<div class="weebly_header">
</div>

</div>
<div id="content">%%CONTENT%%</div>
<div id="footer">%%WEEBLYFOOTER%%</div>
</div>
</body>
</html>

and my CSS for my logo is:
#logo{
float: left;
background: transparent url(BloodyGloves22590.png)no-repeat;
width: 225px;
height: 90px;
}
See less See more
Status
Not open for further replies.
1 - 2 of 2 Posts
<div id="header">
<div id="headerleft"><h1><a href="http://www.bloodygloves.com" title="BloodyGloves">BloodyGloves.com</a></h1> </div>




<b>
<ul>

<li id="active"><a href="/index.html">Fight Predictions: Blog</a></li><li id='pg287316514719972252'><a href="/fight-predictions.html">Fight Predictions</a></li><li id='pg388646866213121607'><a href="/about-us.html">About Us</a></li><li id='pg515547664503601666'><a href="/top-ten-categories.html">Top Ten: Categories</a></li>
</ul></b>

Try This instead. Adding the <P></P> tag around your logo should drop the print below down so it isn't run together.

<div id="header">
<div id="headerleft"><h1><P><a href="http://www.bloodygloves.com" title="BloodyGloves">BloodyGloves.com</a></h1></p> </div>




<b>
<ul>

<li id="active"><a href="/index.html">Fight Predictions: Blog</a></li><li id='pg287316514719972252'><a href="/fight-predictions.html">Fight Predictions</a></li><li id='pg388646866213121607'><a href="/about-us.html">About Us</a></li><li id='pg515547664503601666'><a href="/top-ten-categories.html">Top Ten: Categories</a></li>
</ul></b>
See less See more
1 - 2 of 2 Posts
Status
Not open for further replies.
Top