Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #88265
    husker
    Participant

    See http://bayareahuskers.org/wp/merchandise/

    There is allot of white space between images and word sizes and also the drop down selections and Add to Cart. This is code taken from Paypal. In my old web site I did not have all that space.

    Is the space being created by CSS Sheet for tables and/or td and tr or some other reason you can see?

    Brian

    #88312
    Pratik
    Participant

    HI @husker,

    This is because the image is inside a <p> tag. Can you remove it? Also the space between dropdown selections and Add to cart is due to table margins.

    If you are unable to remove <p> tag, use following code:

    
    .page-id-14 p {
        margin-bottom: 5px;
    }
    

    Similarly for table,

    
    .page-id-14 table {
        margin-bottom: 5px;
    }
    

    Increase or decrease 5px for desired results. This will only work on current page only.

    Let me know if this works or not.

    Regards,
    Pratik

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Vertical Spacing on Paypal Form Inserted’ is closed to new replies.