rsgale
Forum Replies Created
-
Forum: Plugins
In reply to: [Google Forms] Very slow loadingNow done.
Thanks
Forum: Fixing WordPress
In reply to: Can't replace image in my headerHi,
Well the code appears to be fine – I just tried the theme on my WordPress site and it worked.
Have you updated to the latest versions? Go to Dashboard -> Updates then update your WordPress and update the theme.
If that doesn’t help then I could log in for you and work out what’s wrong – if you’re OK with me doing that?
R
Forum: Fixing WordPress
In reply to: Can't replace image in my headerIn your WordPress admin, go to Appearance -> Editor
On the right side, select Header (header.php)
Copy the contents and paste here.
Forum: Fixing WordPress
In reply to: Can't replace image in my headerCan you paste the code of your header.php file? It must be pointing directly to the image rather than the variable – which theme are you using?
Forum: Fixing WordPress
In reply to: Foreach loop that just won't workPlease ignore this – I finally got there!
For those who are interested, the working code is
<?php $coverpages = array ('About', 'News', 'Jobs', 'Register'); foreach ($coverpages as $p) { if ( !is_page($p) ) { echo "<a href='/$p/'>"; }; echo "<img src='"; bloginfo('template_directory'); echo "/images/" . $p . ".png' class='buttons "; if ( !is_page($p) ) { echo ' hov'; }; echo "'/>"; if ( !is_page($p) ) { echo '</a>'; }; } ?>Best, R
Forum: Fixing WordPress
In reply to: Can't replace image in my headerHave you cleared your browser cache? Try clicking reload while holding to CTRL.
Forum: Fixing WordPress
In reply to: Tagline appears twicePlease post the text of your header.php file – that’ll contain the problem.