Hi all I have a theme that Im trying to center a google adsense leaderboard in. It was built for navigation but Ive just placed my Adsense code there and its all to the left. I want it in the center Any help please?
Here is the CSS
#sec-nav {
width:1000px;
display:block;
float:left;
background:#fff;
border-bottom:1px solid #fff;
height:28px;
padding:0;
}
#sec-nav ul {
list-style:none;
color:#000;
font-family:Helvetica Neue,Helvetica,Arial,FreeSans,sans-serif;
height:28px;
}
#sec-nav li {
padding:6px 4px 2px 4px;
float:left;
list-style:none;
margin:0;
}
#sec-nav li a {
text-decoration:none;
text-transform:uppercase;
font-size:12px;
font-weight:700;
color:#000000;
margin:1px 0 0 18px;
}
#sec-nav li a:hover {
color:#B00000;
}
there is no navigation in this area id like to just place my adsense code there and center it within page.
Here is the Header.php Code
<?php $td_sec_menu_check = get_option('td_sec_menu_check'); if($td_sec_menu_check): ?>
<div id="sec-nav">
<ul>
<li>
<?php $td_sec_menu_code = get_option('td_sec_menu_code'); echo stripslashes($td_sec_menu_code); ?>
</li>
</ul>
</div>
Any ideas?
Thanks in advance