• My site, https://vivelacasaverde.com/ is running an old header. I need to change the image. I have the new one ready to swap out but I simply cannot find where to do this at. Plus, I am not sure that my computer is one that started the site, which I am not sure if that is my issue. I believe the theme I am running is WSC6 1.0.5 by Go Imai.
    Any help will, in fact, help.

Viewing 14 replies - 16 through 29 (of 29 total)
  • Thread Starter cellarridge

    (@cellarridge)

    I uploaded it to the media library on my blog’s dashboard sidebar. The absolute URL, I believe, is:
    https://vivelacasaverde.com/wp-content/uploads/2012/01/12_LCV_website_header.jpg

    OK.

    You need to replace all this code:

    <?php
    if ( is_front_page() ) { ?>
    	<div id="top-image">
    		<div id="top-image-wrap">
    			<?php if(function_exists('wp_cycle')) { wp_cycle();} else { ?>
    			<img src="<?php echo get_template_directory_uri(); ?>/img/top-image-1.jpg" />
    			<?php } ?>
    		</div>
    	</div>
    <?php } else { ?>
    	<div id="second-image">
    		<div id="breadcrumb">
    		<?php if(function_exists('bcn_display')) { bcn_display(); } ?>
    		</div>
    	</div>
    <?php } ?>

    With this code:

    <div id="top-image">
      <div id="top-image-wrap">
        <img src="<?php echo (wp_upload_dir())['baseurl']; ?>/2012/01/12_LCV_website_header.jpg" />
      </div>
    </div>

    Try that and let’s see what it gives us.

    Cheers

    PAE

    Thread Starter cellarridge

    (@cellarridge)

    So i did it (i think). But now nothing loads when I go to https://www.vivelacasaverde.com
    What now?

    Then you can’t have done it right. Following exactly what I gave you shouldn’t have caused an error like that, even if it was slightly wrong.

    You could try this:

    <div id="top-image">
      <div id="top-image-wrap">
        <img src="https://vivelacasaverde.com/wp-content/uploads/2012/01/12_LCV_website_header.jpg" />
      </div>
    </div>

    If that works, it was my code that was wrong. If it doesn’t you’ve made alterations other than those I gave you. In which case, please post the code in header.php, using pastebin in line with the forum rules.

    Cheers

    PAE

    Thread Starter cellarridge

    (@cellarridge)

    So, I am starting with a whole header code of this:
    [Code moderated as per the Forum Rules. Please use the pastebin]

    and replacing only this part:
    [Code moderated.]

    With this part:

    <div id="top-image">
      <div id="top-image-wrap">
        <img src="<?php echo (wp_upload_dir())['baseurl']; ?>/2012/01/12_LCV_website_header.jpg" />
      </div>
    </div>

    or this one:

    <div id="top-image">
      <div id="top-image-wrap">
        <img src="https://vivelacasaverde.com/wp-content/uploads/2012/01/12_LCV_website_header.jpg" />
      </div>
    </div>

    So my finished, entire code for the Header section of my editor HTML will look like:

    [Code moderated.]

    Is that right? To have all that code still in there?

    Thread Starter cellarridge

    (@cellarridge)

    Put back the original code and let’s start again. There’s a few things in there I’m not happy with.

    Cheers

    PAE

    Thread Starter cellarridge

    (@cellarridge)

    Okay: I got aggressive and just started pasting code in with little to no regard for the long term and ended up with exactly what I wanted!
    https://www.vivelacasaverde.com
    now has a new header! Thank you both for all of your help!
    It is much appreciated!
    Saved me!

    Thread Starter cellarridge

    (@cellarridge)

    For those following along at home, here is what the final header code ended up looking like:
    https://pastebin.com/rMWenizn

    Glad it’s worked out for you.

    :0)

    PAE

    Thread Starter cellarridge

    (@cellarridge)

    Okay, well, how do I edit the images in the side bar on the right?

    You need to start another thread for this. Your new question is not related to the first one.

    However, you should know that the images were uploaded to your site last May, so it’s something being done locally. That would suggest that somebody your end knows how to do it.

    Cheers

    PAE

    Thread Starter cellarridge

    (@cellarridge)

    Thank you for all the help. On to the next forum.

    ??

    PAE

Viewing 14 replies - 16 through 29 (of 29 total)
  • The topic ‘Need help changing header image. PLEASE!’ is closed to new replies.