GetSimple Support Forum
How to remove the title in the header to put a logo instead - Printable Version

+- GetSimple Support Forum (http://get-simple.info/forums)
+-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3)
+--- Forum: General Questions and Problems (http://get-simple.info/forums/forumdisplay.php?fid=16)
+--- Thread: How to remove the title in the header to put a logo instead (/showthread.php?tid=75)



How to remove the title in the header to put a logo instead - camikat - 2009-08-19

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-est-un-cms-vraiment-simple-et-sans-base-de-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...


How to remove the title in the header to put a logo instead - Derek - 2009-08-19

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?


How to remove the title in the header to put a logo instead - Derek - 2009-08-19

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>



How to remove the title in the header to put a logo instead - camikat - 2009-08-19

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
@++++


How to remove the title in the header to put a logo instead - camikat - 2009-08-19

The site web was : http://www.id2site.com/ and you can check it
Sorry for my english ! Thanks@+++


How to remove the title in the header to put a logo instead - lona79 - 2009-09-17

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 ...


How to remove the title in the header to put a logo instead - pixelita - 2009-10-04

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>



How to remove the title in the header to put a logo instead - 123 - 2010-01-08

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!!


How to remove the title in the header to put a logo instead - pixelita - 2010-01-08

A link might help. Smile


How to remove the title in the header to put a logo instead - 123 - 2010-01-08

Nevermind.

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

Thanks.