• Hi there,

    So at https://www.iphonebooboo.com I am using a template called moreorange. I changed the header image but because it’s more detailed now if I use a gif it will be huge. So I figured I would just change the code to look for header.jpg instead of header.gif. The rub is I cannot find a reference to the image anywhere in any of the pages. I have designed simple websites and know basic HTML so I am a little embarrassed to admit that I don’t know what to do.

    Can anyone help me find what I need to change to get it to look at my jpg?

    Thanks,
    Nacho

Viewing 2 replies - 1 through 2 (of 2 total)
  • This is generally set in the stylesheet of the theme, and this one is no exception. Look in this file:

    https://iphonebooboo.com/wp-content/themes/moreorange/style.css

    For this code, and edit at will

    #navigation
    {
    width: 950px;
    background-image: url(images/header.gif);
    height: 305px;
    margin-left: auto;
    margin-bottom: 0px;
    margin-right: auto;
    margin-top: 20px;
    }

    i have a question concerning this. Is there a way to make the image a clicable link? My problem is that on that blog there are no titles, https://www.strada-dici.com/EnConstruction/ (the title is in the image). so I would like to transform the image into a link to my index page.

    the code looks like that
    #header{width:980px;height:250px;text-align:center;background:url(images/head.gif) no-repeat top;}

    The code in header.php is

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="https://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
    <title><?php
      if(is_single())
      {
       the_title();
       echo " | ";
       bloginfo("name");
      }
      else
      {
       bloginfo("name");
       wp_title();
      }?></title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" />
    <link rel="shortcut icon" href="<?php bloginfo('template_directory'); ?>/favicon.ico" />
    <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
    <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
    <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
    <?php wp_head(); ?>
    </head>
    <body>
    <div id="wrapper">
    	<div id="head
    
    er">
    			<h1><a>/"><?php bloginfo('name'); ?></a></h1>
    <?php
    
    ?>
    
    			<div class="description"><?php bloginfo('description'); ?></div>
    	</div>
    	<div id="main">

    I am very gratefull to anyone that could help

    Erwan

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Seriously, I can’t find where the code is for the header image…’ is closed to new replies.