Shape 5

Joomla Templates => Gamers - Club => : Arcane June 27, 2014, 03:31:31 PM



: S5 Logo - Removing
: Arcane June 27, 2014, 03:31:31 PM
I'm trying to stop publishing anything in the logo position.

I've looked in the template.css and have stop displaying the s5_topmenu_wrap
:
#s5_topmenu_wrap {display:none;} 

I also tried to do the same thing with
:
#s5_menu_wrap.s5_wrap .s5_logo_module {display:none;}


Unfortunately that doesn't seem to work.

I can overwrite by creating a logo module and posting to the logo position but that doesn't help as I want that position not to display at all.

I noticed in index.php that if s5_pos_logo = published then the s5_logo_module will be called and publish the s5_logo.png.  Where is the value for published being set as it isn't an option in the template configuration?

:
			<?php if($s5_pos_logo == "published") { ?>
<div class="s5_logo_module">
<?php s5_module_call('logo','notitle'); ?>
</div>
<?php } else { ?>
<img alt="logo" src="<?php echo $s5_directory_path ?>/images/s5_logo.png" class="s5_logo" onclick="window.document.location.href='<?php echo $LiveSiteUrl ?>'" />
<?php ?>

I know I could go in and fix this in index.php but I figured I was just missing something in one of the CSS files.


: Re: S5 Logo - Removing
: mikenicoll June 27, 2014, 10:41:06 PM
Hello,

If you just want to hide the logo have you tried this in the custom.css?


.s5_logo {
    display: none;
}


-Mike


: Re: S5 Logo - Removing
: Arcane June 28, 2014, 01:13:14 AM
Mike,

Thanks for the quick response.  I started using the custom.css but for some reason it didn't take.  I restarted IIS and magically things started working... both in template.css and custom.css.  Never had that happen before but it works now so I'm not going question it.

Thanks again!


: Re: S5 Logo - Removing
: mikenicoll July 01, 2014, 01:03:15 AM
NP

-Mike