I'm wanting to use the same template (OS Training Bolt) to make a test site. I created a Joomla 1.7 site with the previous version of the template. I'm now using Joomla 2.5.6 and the newest version of the template. I've installed everything from scratch.
The last time I did this I had to make a few tweaks to the template.css and index.php files to make the logo fit. I have copied the template.css, index.php, and logo.png over to my test server. The changes to the template seem to take effect however the logo doesn't show up.
I have tried copying the logo.png to the /joomlasite/templates/ostrainingbolt/images folder as well as /joomlasite/images folder. Its in both folders, I have looked at these files and find no difference between them, I've tried overwritting them.
I'm stuck and am not sure how to get this resolved.
Here is the template.css code I had to change and what I'm currently using
#logo {
position:absolute;
top:0; left:0;
width:960px; /* was227px; */
}
h1.title {
background:url(images/logo.png) no-repeat;
height: 150px !important;
height /**/:150px;
margin: 0;
padding: 90px 0 0 0;
overflow: hidden;
}
#leaderboard {
position:absolute;
right:0; bottom:0;
text-align:right;
width:728px;
}
#menu {
position:relative;
z-index:999;
margin-top:65px; /*new property added to move menu down */
} Here is the index.php changes that are no not working either.
<div id="header">
<div id="logo" onclick="location.href='<?php echo JURI::base() ?>';" style="cursor: pointer;"><h1 class="title"><?php /*echo JDocument::getTitle(); */ ?></h1></div>
<div id="leaderboard"><jdoc:include type="modules" name="leaderboard" style="none" /></div>
</div>