gshaw0
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Hi Richard, tried it on our live (hosted) site, phpinfo confirmed curl installed and worked fine on there. Not sure why it was playing up with WAMPServer but main thing is it’s alive and kicking on the proper site 🙂
Thanks for the quick reply, you were spot on! I use AdBlock on Chrome and turning it off for the WordPress site did the trick.
Forum: Themes and Templates
In reply to: [Destro] No logo without upgrade?Easily fixed with a bit of tweaking to the PHP code 😉
Open up header.php in the destro theme folder (make a backup copy first) then look for the lines relating to the logo…
<div id="logo"> <p class="logo_title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo('name'); ?></a></p> <p class="logo_desc"><?php bloginfo('description'); ?></p> </div>and replace instead with
<div id="logo"> <p class="logo_title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/logo.gif" alt="Header logo" /></a></p> </div>Place the logo file in the theme’s images folder and tweak the CSS using Firebug if you want it aligned differently to the default setting (left)
Enjoy!
Viewing 3 replies - 1 through 3 (of 3 total)