This is probably a really lame question, but how can I get rid of the picture that says "Learn with the Experts" and has the picture of the headlight on it?

Thanks,
GreatLakesWeb

Comments

mjohnq3’s picture

The image is named: h_back.jpg. It's located in the images directory. It's specified on line #1535 in style.css.

You could just specify another image of the same size, 620px x 206px, or one of a different size by changing the css.

peterx’s picture

Nice use of white space based on the test at http://d-theme.com/contrast. Would be nice to have the blue as a plain div background, the car headlight as a replaceable logo, and the text from the image as the site slogan. I could replace the Learn bit with "Learn PHP with the experts" and replace the car headlight with a picture of a tropical island or "Learn Java" accompanied by a picture of a bloodshot eyeball.

From what I can see, div id="featured" would need a couple of internal divs to hold the two new elements, the text on the left and the car headlight on the right.

Passionate_Lass’s picture

Hi.

I am just trying to get the text in the featured block to go across the entire featured section with some nice edge padding. However, I am having a hard time. How would I set the width for that block area?

Here's my CSS:
#featured {
position: relative;
height: 206px;
background: url(images/h_back.jpg) no-repeat;
background-position: 20px 50%;

}

#featured .block {
position: absolute;
padding-left: 40px;
bottom: 25px;
margin: 10px;
width: 525px;
}

#featured .block .content {
color: #FFFFFF;
}

edem’s picture

Hello thanks for your help on locating the image. I have been able to replace that image with a custom one, but i want the image only to be displayed on the home page or front page. Please is that possible?... I need help.
Thanks...

Agileware’s picture

Status: Active » Fixed

Hi edem,

In your page.tpl.php theme file, replace this (on line 46)

<div id="featured">
  <?php if ($featured): print $featured; endif; ?>
</div>

with

<?php if ($is_front): ?>
  <div id="featured">
    <?php print $featured; ?>
  </div>
<?php endif; ?>

Hope this helps :) Thanks for using our theme!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.