I do not know what you are describing.
We’ve seen that problem before.
In this case, assign a classname to the button image, take it out of the paragraph tags, and add a few of lines of CSS to address that classname.
Please note: this is band-aid code and should NOT be repeated on any other page. Fixing the misplaced padding-left and margins in the CSS and media queries would be the better route to take.
The restructured HTML looks like this: (all I did was take the button image out of the paragragh tags and give the img a classname.)
<div class="ad">
<a href="/request/index.php?id=ParadisusPalmaReal" target="_blank">
<p style="font-size: 12pt; font-family: Tahoma; color:black; text-align:center;">
Paradisus Resorts are part of the major hotel group Melia Hotels International.<br>
<b>They guarantee the lowest Internet rates if booked in their website.</b><br><br>
Look for yourself.
</p>
<img class="booknow" src="http://pintotours.net/Pinto/Logos/MeliaGuarantee.jpg" alt="Melia Guarantee"><br><br>
<p>
Click on the images to enter the hotel's own website.
</p>
<img id="ttnimage" src="http://pintotours.net/Pinto/Logos/ParadisusLogo.jpg" width="140" height="93" alt="Paradisus Palma Real" />
</a>
</div>
Then I added some CSS:
.booknow {
width:100%;
max-width:304px;
height:auto;
}
#content #box4 img.booknow {
padding:0;
}
That should stop the horizontal scrollbar.
If you want some white space beside the button at narrow widths, put a container around the button image and add horizontal padding to the container…
<div><img class="booknow...></div>
I just noticed that these ad anchors are not set to display:block; You should probably do that.
(line 1024)
.ad a {
text-decoration:none;
display:block;
}
Personally, clicking white space and finding out that it’s an achor makes me crazy, but that’s how you other pages were set up; plus, if you are going to include blocks inside the anchor, it should be set to display:block or inline-block.
To fix the map image above this ad, copy the relevant HTML and CSS from
http://pintotours.net/Asia/Japan/IbisKyotoStation.html.
I have not tested to see if there is more junk code in this CSS that affects the map. Don’t forget the IE8 style to remove the blue border from the anchor.