Following on from my first post about optimising the Revolution theme, here’s how to remove the default Revolution logo from the top of each page and replace it with text instead. I can never remember how to do this, so this is as much for my own benefit as anyone elses!
- Within your wordpress dashboard edit the theme
- Edit style.css and look for #headerleft
- Change the padding to 30px 0px 0px 0px;
- Save
- Edit header.php and find the div id=”headerleft”
- Replace the existing code in that div with this (copy and paste might cause a problem for some reason I haven’t yet worked out, so test that the link works on your text after saving the change):
<a href=”<?php echo get_settings(‘home’); ?>/”><?php bloginfo(‘name’); ?></a><br />
<?php bloginfo(‘description’); ?> - Save and test.