
Originally Posted by
meowhead
Thanks for the reply. I love your template.
The logo is 98x98 and I would like to see the logo on the top right of the header above the View Cart tab of each page of the site, if possible, rather than on just the home page.
first:
open
includes/templates/ocean_front/css/stylesheet.css
add/make the highlighted changes:
Code:
#logoWrapper{
position: relative;
top: 0;
left: 28px;
/*background-image: url(../images/header_bg.jpg);
background-repeat: repeat-x;
background-color: #ffffff;*/
height:100px;
width:790px;
}
.sslSeal {
position: absolute;
top: 0;
right: 0;
background: url(../images/THE_NAME_OF_IMAGE.gif) no-repeat
}
save the file and upload to your server
second:
save the image to includes/templates/ocean_front/images
third:
open includes/templates/ocean_front/common/tpl_header.php
Find the following section of code and make the highlighted changes:
Code:
<div id="logoWrapper">
<div id="navMainSearch"><?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></div>
<div class="sslSeal"> </div>
save the file and upload to your server
Bookmarks