Sales Page Problems!! Help!!

8 replies
  • WEB DESIGN
  • |
Hey I have a problem that I've been trying to fix for the last week and I haven't been able to figure it out.

I made my sales page a big graphic and then added it to optimize press. I can change the background color but there is the white border around the graphic that I can't get rid of.

I've tried to change the .css and even upload it through my cpanel but everything I try ends up not working

If you guys have any suggestion please let me know.

Anything will help!

Best Regards,

David

Attachment 18495
#page #problems #sales
  • Profile picture of the author RobinInTexas
    We need to see the site to see the problem. It's in the CSS.
    Signature

    Robin



    ...Even if you're on the right track, you'll get run over if you just set there.
    {{ DiscussionBoard.errors[8485029].message }}
  • Profile picture of the author andrewjorgenson
    Try this:
    HTML Code:
    <img src='myimage.png' style='border-width:0px;'/>
    The inline style tag should override CSS declared elseware.

    If it doesn't go away, then it's because a parent node.

    A situation like this, possibly:

    HTML Code:
    <style type='text/css'>
    .main {
      border-style:solid;
      border-width:25px;
      border-color:white;
      }
    </style>
    
    <div class='main'>
         <img src='main.png'/>
    </div>
    {{ DiscussionBoard.errors[8485368].message }}
  • Profile picture of the author David V
    There is no border.
    I think maybe you just asked the question the wrong way....no biggie.
    You are changing the body BG but there is still a BG for the "launchbk" div which is found in "thinlaunch001.css" on line 27.

    Code:
    #launchbk {
    background-image: url(iages/thinlaunch1bk.png);
    background-repeat: repeat-y;
    padding-top: 0px;
    }
    It's the "thinlaunch1bk.png" thats giving you that thick white "border" although it's not a border, it's a background for the div.
    {{ DiscussionBoard.errors[8486313].message }}
  • Profile picture of the author topnichewebsites
    background-image: url(images/thinlaunch1bk.png);
    background-repeat: repeat-y;
    padding-top: 0px;

    Yup thats it .. David URL .. is missing the "m" in images. Delete that whole line and problem solved. Line to remove "background-image: url(images/thinlaunch1bk.png);"
    Signature
    http://pixelcovers.com/ <- eBook add eCovers

    https://www.unicommercesolutions.com <- WordPress Websites and Maintenance
    {{ DiscussionBoard.errors[8486341].message }}
    • Profile picture of the author David V
      Originally Posted by topnichewebsites View Post

      background-image: url(images/thinlaunch1bk.png);
      background-repeat: repeat-y;
      padding-top: 0px;

      Yup thats it .. David URL .. is missing the "m" in images. Delete that whole line and problem solved. Line to remove "background-image: url(images/thinlaunch1bk.png);"
      Oh...The M missing is me!
      I just dropped it in developer tools to double check it was the right background, and forget to put it back when I posted the code here!
      {{ DiscussionBoard.errors[8486371].message }}
      • Profile picture of the author David Burnett
        Thank you sooo much David & Topnichewebsites! I've been looking forever and it just looks like I was asking the wrong question.

        I did what you said and it works! I wish I could thank you multiple times!

        Thanks guys!
        {{ DiscussionBoard.errors[8486632].message }}
  • Profile picture of the author topnichewebsites
    No problem, glad you got it to work. David is spot on 99.999999% he normally beats me to the fix. haha
    Signature
    http://pixelcovers.com/ <- eBook add eCovers

    https://www.unicommercesolutions.com <- WordPress Websites and Maintenance
    {{ DiscussionBoard.errors[8486947].message }}

Trending Topics