edit the header

Discussion in 'WordPress' started by wayne Xuan, Mar 3, 2013.

  1. #1
    I try to edit the second title for the website, but couldn't fine the way to do it.

    like on the site: http://www.salespartner.co.nz/
    I want to edit the right top sentence: Leading edge technology for .....

    and on the link: http://www.salespartner.co.nz/products/pocket-salespartner/
    I want to remove the sign: $40 setup fee...

    Thank for any help, sorry for the simple question for someone.
     
    wayne Xuan, Mar 3, 2013 IP
  2. ArchAxis

    ArchAxis Well-Known Member

    Messages:
    136
    Likes Received:
    11
    Best Answers:
    1
    Trophy Points:
    175
    #2
    To edit the text in the header open the file header.php in theme directory, you should find the text there but the theme you're running could be different since it has a lot of tables in it. Go to /wp-admin and login as admin then go to Appearance > Editor, find header.php click inside the form and press Ctrl + F and search for Leading edge technology for, once you find the text change it to what you want and press Update File to make the edits.

    To remove the table with the price in it you'll need to hide the table using CSS, Appearance > Editor, find style.css click inside the form and go to the end of it and add
    #product_price_td{
    display: none;
    }
    HTML:
    and press Update File to save the file.

    Reload your site in your browser by pressing Ctrl+F5 and you'll see the new changes.
     
    ArchAxis, Mar 3, 2013 IP
  3. creativewebmaster

    creativewebmaster Active Member

    Messages:
    654
    Likes Received:
    7
    Best Answers:
    4
    Trophy Points:
    78
    #3
    Here are the solution for each 3 changes.

    1) Connect with FTP - > Theme -> Theme name --> header.php

    2) And remove below code from this page

    <td id='product_price_td'>
    <div id='product-price-wrapper' class='widget'>
    <div id="price-icon">
    <table id="price-icon-table">
    <tr>
    <td class="a">$</td>
    <td class="b">40</td>
    </tr>
    <tr>
    <td class="c" colspan="2">setup fee</td>
    </td>
     
    creativewebmaster, Mar 3, 2013 IP
  4. Masim man

    Masim man Active Member

    Messages:
    73
    Likes Received:
    4
    Best Answers:
    2
    Trophy Points:
    58
    #4
    I think, It's better to remove the code from your template (it should be in single.php or page.php) rather than use CSS to hide it.

    And what the hell with your logo, 1283px X 1496px for logo?
    You should scale and crop it to the smaller size.
     
    Last edited: Mar 4, 2013
    Masim man, Mar 4, 2013 IP
    JoyGoRound likes this.
  5. wayne Xuan

    wayne Xuan Greenhorn

    Messages:
    10
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #5
    Thanks a lot, you guys very helpful, all fixed.
    May I ask another question, on the same site, I want to make logmenin box square, which is on the right top corner of the page, on the right of support ID.
    what I tried is: go to the style.css
    add border-radius: 0px; to

    #logmeinsupport{
    font-size: 13px;
    color:white;
    margin-top: 4px;
    border-left: 1px solid #CCC;
    padding-left: 20px;

    }


    However it doesn't change to square, where should I edit it please
     
    wayne Xuan, Mar 4, 2013 IP
  6. wayne Xuan

    wayne Xuan Greenhorn

    Messages:
    10
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #6
    thank you all, have fixed the box. have a good day
     
    wayne Xuan, Mar 4, 2013 IP