dailystyleguide
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How do I remove the verticle lines on my theme?Perfect – thank you so much! I really appreciate it!
Have a great week 🙂Forum: Fixing WordPress
In reply to: How do I remove the verticle lines on my theme?hold on, so I just need to delete this section or the image on my host?
Forum: Fixing WordPress
In reply to: How To: Add home page URL link into header image?Perfect! Yipee!!! Thanks so much for your patience and fantastic help!!!
Best wishes 🙂
Forum: Fixing WordPress
In reply to: How To: Add home page URL link into header image?I’m not clear as to what code I enter here? (insert your code for your image):
” title=”Home”>insert your code for your image
The image is uploaded to my web host.
Forum: Fixing WordPress
In reply to: How To: Add home page URL link into header image?Thanks so much for the response. This is the code I have in header.php:
<div id=”container”>
<div id=”page”>
<div id=”masthead”><div id=”logo”>“<?php if (is_home()) echo(‘ rel=”nofollow”‘); ?>><?php bloginfo(‘name’); ?></div>
<?php if (is_home()) { ?><h1><?php bloginfo(‘description’); ?></h1><?php } else { ?><div id=”tagline”><?php bloginfo(‘description’); ?></div><?php } ?>
</div>
<div id=”rotating_image”><?php include (TEMPLATEPATH . ‘/rotating_images.php’); ?>
</div>Could you clarify where I need to enter the line of code you gave me?
I also have rotating_images.php with this code (I wonder if I need to alter this instead?):
<?php
$random_image = rand(1,1); // the second number should equal the total number of images that you want to rotate
?>
<img src=”<?php bloginfo(‘template_url’); ?>/headers/header_<?php echo $random_image; ?>.jpg” alt=”Click here to return to the home page!” />