Quote:
Originally Posted by WordpressConsultant Hi Kenneth,
Saw your blog and leave comments on the new look.
Anyway, can you show me the code where to change the top navigation color and also the where to insert the adsense code on top.
I really have no time to make modification, so if you are kind enough, show me the way or help me to make changes..  |
Hi Steven,
Thanks for your comment. Sorry for late reply as were on vacation.
Regards to the top navigation, to add the adsense code on top you can insert it at header.php
PHP Code:
<li><?php wp_register('', ''); ?></li>
<?php adsense_deluxe_ads('5adsunit'); ?>
In the header.php look for line wp_register as above and add in your adsense just bottom of wp_register. But that depend on which ads unit you gonna use as I have change my site to adapt resolution 1024x768.
As for the color on the menu bar, you can change it at stylesheet, look for #header and change it at #navigation(see below).
Code:
#header {
padding: 0 20px 0 20px;
}
#title {
border-bottom: 1px solid #ccc;
}
#navigation {
background-color: #e5ecf9;
border-top-width: medium;
border-top-style: solid;
border-top-color: #3366cc;
}
Hope this can help you.