Help!

Discussion in 'HTML & Website Design' started by Morgan, Dec 26, 2008.

  1. #1
    Hello,

    I need help adding a logo to my website www. betbet .com.au as i cannot seem to find where i can add a logo as it just displays the sites name in the header.

    How can i change the text to show my logo?

    Thanks
     
    Morgan, Dec 26, 2008 IP
  2. HA Y AN BOI

    HA Y AN BOI Peon

    Messages:
    5
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Look in your src.
        <h1><a href="http://www.betbet.com.au/">
          BetBet.com.au      </a></h1>
    
    Code (markup):
    than.
        <h1><a href="http://www.betbet.com.au/">
          Put html img here      </a></h1>
    
    Code (markup):
     
    HA Y AN BOI, Dec 27, 2008 IP
  3. Fantazio

    Fantazio Peon

    Messages:
    66
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
     <h1><a href="http://www.betbet.com.au/"><img src="imglink" width="" height=""></a></h1>
    Code (markup):
     
    Fantazio, Dec 27, 2008 IP
  4. Morgan

    Morgan Well-Known Member

    Messages:
    1,525
    Likes Received:
    21
    Best Answers:
    0
    Trophy Points:
    128
    #4
    Thanks but i cant find this in my files.

    What file would that code be in?
     
    Morgan, Dec 28, 2008 IP
  5. vntutor

    vntutor Peon

    Messages:
    1,721
    Likes Received:
    19
    Best Answers:
    0
    Trophy Points:
    0
    #5
    search and replace
     
    vntutor, Dec 28, 2008 IP
  6. Morgan

    Morgan Well-Known Member

    Messages:
    1,525
    Likes Received:
    21
    Best Answers:
    0
    Trophy Points:
    128
    #6
    Thanks everyone i have found where to add the logo although when i try to add it, the logo is added in the wrong position as you can see by going to www. betbet .com.au can anyone help me with this?
     
    Morgan, Dec 28, 2008 IP
  7. hans

    hans Well-Known Member

    Messages:
    2,923
    Likes Received:
    126
    Best Answers:
    1
    Trophy Points:
    173
    #7
    1.
    its easier to master / domainate a horse than to master HTML and dominate ego
    :) !!

    2.
    validate your code / pages !!
    http://validator.w3.org/check?verbose=1&uri=http://www.betbet.com.au/

    and accept ONLY fully valid pages !!


    3.
    you have a MESS in your code - see below - that creates wrong display:


    <div id="headr">
    <h1><a href="http://www.betbet.com.au/">
    <h1><a href="http://www.betbet.com.au/"><img src="http://www.betbet.com.au/images/betbetlogo.jpg" width="" height=""></a></h1>

    you accidentally dropped twice the code
    <h1><a href="http://www.betbet.com.au/">

    4.
    SEO

    if instead of written H1 you hve only banner, then you really NEED alt tag - else NO SEO

    hence take your time to complete the

    width="" height="" alt="Australian Horse &amp; Greyhound Racing News &amp; Tips"
    for all your images

    5.
    strictly AVOID line breaks in meta tags - as you currently have in

    <title>
    |
    Australian Horse &amp; Greyhound Racing News &amp; Tips</title>

    there are / have been MAJOR SE's screwing up on such minor problems !!

    6.
    finally
    to publish URLs without having URL displayed as link,
    use advanced option for post editing and de-activate the option
    Automatically parse links in text

    having full link makes helping you more efficient and more time saving.

    7.
    your favicon may need proper naming and file format ( may be redo the favicon as well.

    it should read

    <link rel="shortcut icon" href="http://www.betbet.com.au/wp-content/themes/magazine theme/favicon.ico" />
    NOT .png
    as file extension for favicons !! unless I am wrong.

    8.
    read, study and understand the CSS for the TOP section of your page to arrange all properly - now the banner section looks messy and overlapping due to wrong CSS values

    God bless
     
    hans, Dec 28, 2008 IP