GetSimple Support Forum

Full Version: How to remove the title in the header to put a logo instead
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi Guys

I'm very pleased with that CMS Getsimple, I 've wrote a post about it on my blog http://www.adeodesign.net/getsimple-est-...e-donnees/

So any way I have some trouble with the title link that I would like to remove to put a logo instead !

Actually, I've succeed put my logo but it's impossible to remove the link title off..

Could you please help me

This is the URL of my site that I made with Getsimple, as you can see the title's left...
http://id2site.com/

Many Thanks for your work about Getsimple, may be I 'd make a theme one day, I'm webdesigner but not really developper...
I can't read french so I can't understand the blog post, sorry. Are you talking about the id2site that still shows up in the top left?
using the default theme as my example, that would be done by changing:
Code:
<a class="logo" href="<?php get_site_url(); ?>"><?php get_site_name(); ?></a>
to:
Code:
<a class="logo" href="<?php get_site_url(); ?>"> (whatever is here will be the link, so nothing if you want) </a>
Thanks very much for your prompt response,
I should be very tired today because I was looking for some solutions on my' own between <head> and </head> so thanks to you Derek
@++++
The site web was : http://www.id2site.com/ and you can check it
Sorry for my english ! Thanks@+++
Derek Wrote:using the default theme as my example, that would be done by changing:
Code:
<a class="logo" href="<?php get_site_url(); ?>"><?php get_site_name(); ?></a>
to:
Code:
<a class="logo" href="<?php get_site_url(); ?>"> (whatever is here will be the link, so nothing if you want) </a>

ok, but where I put my image file link ?

Sorry for my bad english ...
You can style your banner image any way you like using CSS. See examples:

http://guswortham.info
http://systemsprojectmanagement.com
http://getsimple.mytestbed.com

Just create a division called #banner and use CSS to call your banner image/logo.

OR you can just plop the image here:

Code:
<a class="logo" href="<?php get_site_url(); ?>"><img src="/path/to/image alt="" /></a>
Uhm......

I have this code but it does not work:

Code:
<a class="logo" href="<?php get_site_url(); ?>"><img src="images/logo.png" alt="" /></a>

Any clues?

If I access the image directly it does show...


Thanks!!
A link might help. Smile
Nevermind.

It works now. I included the entire path to the logo instead than just /images.

Thanks.