Hello
I'd like to have a clickable logo to return a home, how can I do this?
Thank you
Renato
http://www.skateonline.com.br
Clickable logo
(6 posts) (5 voices)-
Posted 9 months ago #
-
Open header.php from Cleanr theme folder and find line
<div id="header" class="grid_16"> <h1><a>and replace with
<div id="header" class="grid_16"> <h1><a href="<?php echo get_option('home'); ?>/">Rest of the code remains same.
Posted 9 months ago # -
Thanks Digamber!!!!
It's OK now!!
RenatoPosted 9 months ago # -
Hi,
I have the last version of Cleanr.
The code above is included.
I want to replace the blog's title text by my logo (image).How to do that?
Thanks
NathaliePosted 6 months ago # -
You would see this code in header.php on line 22
<a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a>Replace with this
<a href="<?php echo get_option('home'); ?>/"><img src="<?php bloginfo('template_directory'); ?>/images/logo.png" ></a>Make sure that the "logo" image is there in the images folder in the Cleanr theme folder.
Thanks...
Posted 6 months ago # -
The following is the easy method to create clickable logo:-
custom #logo {background-image: url('images/logo.jpg'); background-repeat: no-repeat; width: 170px; height: 145px; text-indent: -9999px; }
.custom #logo a {width: 170px; height: 145px; display: block; outline: none;}Posted 1 month ago #
Reply
You must log in to post.