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.
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.
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>
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.
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