Attention HTML Experts - Help Save My Hair! [CLOSED] Thanks!

10 replies
Can you please help?

Goodness knows how much time I've
lost trying to sort this out, never mind
the loss of hair!

Can anyone help me to get rid of the
weird background just below each of
the testimonial boxes:
Affiliate Marketing Bootcamp

Thanks

John
#attention #experts #hair #html #save
  • Profile picture of the author Kay King
    John -

    Not an html expert - but I see this below the testimonial boxes


    <td background="http://affiliate-marketing-bootcamp.com/images/testibot.gif" height="28" width="383">&nbsp;</td>

    Try removing one of those (it is just beneath the close of each testimonial) and see if that helps.

    kay
    Signature
    Saving one dog will not change the world - but the world changes forever for that one dog
    ***
    Dear April: I don't want any trouble from you.
    January was long, February was iffy, March was a freaking dumpster fire.
    So sit down, be quiet, and don't touch anything.
    {{ DiscussionBoard.errors[868225].message }}
  • Profile picture of the author Dwayne Pressley
    Oh John,

    Thought I was gonna be able to help you out with that hairloss thing! LOL! OH well, I'm here if you need me,

    Dwayne
    {{ DiscussionBoard.errors[868226].message }}
    • Profile picture of the author John Taylor
      Originally Posted by Dwayne Pressley View Post

      Thought I was gonna be able to help you out with that hairloss thing! LOL! OH well, I'm here if you need me,
      Mmm, nice hats you guys are wearing...


      John
      Signature
      John's Internet Marketing News, Views & Reviews: John Taylor Online
      {{ DiscussionBoard.errors[868282].message }}
  • Profile picture of the author Colin Evans
    Hi John,

    The last table row of each testimonial has &nbsp; which is causing it, change:
    Code:
    <tr> 
     <td background="http://affiliate-marketing-bootcamp.com/images/testibot.gif" height="28" width="383">&nbsp;</td>
    </tr>
    to this:

    Code:
    <tr> 
     <td background="http://affiliate-marketing-bootcamp.com/images/testibot.gif" height="28" width="383"></td>
    </tr>
    {{ DiscussionBoard.errors[868229].message }}
  • Profile picture of the author nvs74191
    I saw this code for the bottom portion of the testimonial boxes:

    <td background="http://affiliate-marketing-bootcamp.com/images/testibot.gif" height="28" width="383">&nbsp;</td>

    You can try removing the "&nbsp" and save the html file and upload.

    I have a feeling it is the space before </td> that causes the extra layer.

    P.s. oops, too many ppl have already solved your problem.
    Signature

    Swaminathan

    I am a Jack Duncan Fan!

    {{ DiscussionBoard.errors[868239].message }}
    • Profile picture of the author AnthonyWilson
      Hi John,

      I took a look but removing the space (&nsbp) didn't seem to work.

      I resolved it by changing the property of the table which holds the testimonial box to have a cell padding of 0, (currenlty it is 10).

      You may have to realign your text a little if you take this approach.
      Signature

      -------------------- Video Tutorials with PLR or MRR
      --------------------

      {{ DiscussionBoard.errors[868272].message }}
    • Profile picture of the author TelegramSam
      John,

      For the relevant table cells where you have set the background image, use the following code:


      <td style="background-IMAGE: url(testibot.gif); background-repeat: no-repeat;" width="383" height="28">&nbsp;</td>


      Basically, you haven't set the background-repeat to no-repeat.

      You should use the style function to help control this. Using this css code gives much better control than the old fashioned background statement for a table cell.

      Where it says url(testibot.gif) you need to put the proper path in that points to your images such as:

      url(www.testwebsite.com/images/testibot.gif)



      This should sort it out for you.

      Cheers,

      Sam


      P.S. - If it is still a problem then let me know.
      {{ DiscussionBoard.errors[868283].message }}
      • Profile picture of the author ppc4profit
        John,

        In some versions of Internet Explorer the top of the testimonials also has a similar problem (whereas Firefox only had an issue with the bottom) so remove the space in the code at

        <td background="Affiliate%20Marketing%20Bootcamp_files/testitop.gif" height="45"></td>

        to solve this also
        Signature

        Checkout Our Fully Responsive Wordpress Templates
        Mobile Enable Your Wordpress Website Today - With This Plugin
        Online Marketing - We Help With PPC, SMS and QR Code Campaigns

        {{ DiscussionBoard.errors[868295].message }}
  • Profile picture of the author ppc4profit
    John,

    The above solutions are correct.

    I thought I would comment as in your code you might not see the exact line

    <td width="383" background="Affiliate%20Marketing%20Bootcamp_files/testibot.gif" height="28">&nbsp;</td>

    as the &nbsp; is an html representation of a space character produced when you view the source in a browser.

    If this is your experience then you might only see this in your code


    <td width="383" background="Affiliate%20Marketing%20Bootcamp_files/testibot.gif" height="28"> </td>

    If this is true then to solve the problem delete the space in the height="28"> </td> part of your code ( on each of the 4 testimonials.
    Signature

    Checkout Our Fully Responsive Wordpress Templates
    Mobile Enable Your Wordpress Website Today - With This Plugin
    Online Marketing - We Help With PPC, SMS and QR Code Campaigns

    {{ DiscussionBoard.errors[868271].message }}
  • Profile picture of the author John Taylor
    Colin,

    Thanks!

    There are times when being too close to the
    problem gets in the way.

    John
    Signature
    John's Internet Marketing News, Views & Reviews: John Taylor Online
    {{ DiscussionBoard.errors[868275].message }}

Trending Topics