Shape 5

Joomla Templates => Your Store - July 2007 - Club => : philly0128 November 30, 2008, 05:27:22 PM



: expanding logo size
: philly0128 November 30, 2008, 05:27:22 PM
I have a logo that I added but I can't find where in the color2 css to change the size of the logo

www.christiancompassion.com/online


: Re: expanding logo size
: jonahh December 01, 2008, 01:59:17 PM
Hello,

The CSS for this is located in your template_css.css file at line 471, you should see:

:
#leftColumn .logo a {
display:block;
height:158px;
overflow:hidden;
text-indent:-3000px;
width:187px;
}

Regards,


: Re: expanding logo size
: philly0128 December 02, 2008, 06:15:59 PM
Thank you, that worked. I was doing some research on trying to figure out how to get a swf file as my banner or logo since .gif takes away from the graphics. I found someone who is able to get it to work by doing the following. I opened the index.php in my editor couldn't find any <div=header as expected, but I tried placing it in some different sections that had divs, I can see the location there it's just not showing up. Can anyone get this to work.

I added the logo.swf to the image folder, I also changed style10 to logo.swf

No modules are required. Just add this code into index.php.

<object codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,124,0" width="900" height="160">
<param name="movie" value="<?php echo $mosConfig_live_site;?>/templates/yourstore/images/logo.swf" />
<param name="quality" value="high" />
<embed src="<?php echo $mosConfig_live_site;?>/templates/yourstore/images/logo.swf" quality="high" pluginspage="http://get.adobe.com/flashplayer/" type="application/x-shockwave-flash" width="900" height="160"></embed>
</object>

For those who do not know. You have to add this code into the div tag of the header (in index.php). in my case it was after <div id="header"> .be sure to change the css file too. change the header in the css file into for e.g. logo.swf and don't forget to add the swf file into the images folder of the template.
oh and, you have to change some things in the code in order for it to work for your template. such as the height and width and the name of your template as well as the file name.