• Hello,

    I’m very new at this. I tried previously to add a logo to the header of the default wordpress theme but had no luck. Now when I want to try again I can’t find the section starting with
    <div id=”header”>
    <div id=”headerimg”>
    <h1><a href=”<?php echo etc. etc.

    Which my understanding is the section to look for to make this change. Specifically I can’t find the lines

    backround: #73a0c5 url (‘images/kubrickheader.jpg’) no-repeat bottom center;

    Again, which is where I read I need to make the change to add the image.

    I think I lost the darn section. Possible? Any suggestions on how to recover it in the event I did loose it. Am I out in left field or am I in the right area to make this change. My site is https://www.trikesandtrails.com

    I’m slowly learning html and css but am at the stage where I’m dangerous, obviously. Any help will be very much appreciated.

    Frustrated but stubborn. Thanks.

    Michael

Viewing 1 replies (of 1 total)
  • backround: #73a0c5 url (‘images/kubrickheader.jpg’) no-repeat bottom center;

    That you can find in the first section in the css:

    /* Begin Typography & Colors */
    body {
    font-size: 62.5%; /* Resets 1em to 10px */
    font-family: ‘Lucida Grande’, Verdana, Arial, Sans-Serif;
    background: #d5d6d7 url(‘images/kubrickbgcolor.jpg’);
    color: #333;
    text-align: center;
    }

    #page {
    background-color: white;
    border: 1px solid #959596;
    text-align: left;
    }

    #header {
    background: #73a0c5 url(‘images/kubrickheader.jpg’) no-repeat bottom center;
    }

    #headerimg {
    margin: 7px 9px 0;
    height: 192px;
    width: 740px;
    }

    This you will find in “header.php” of the themes files, starting around line 39.

    <div id="header">
    <div id="headerimg">
    <h1><a href="<?php echo etc. etc.
Viewing 1 replies (of 1 total)
  • The topic ‘can’t find part of my style css file’ is closed to new replies.