Jump to content

Simple CSS Error. Please Help (Padded Border Around Image)


arcademint.com

Recommended Posts

can anyone please Help me ?

i need someone's help to fix a small error in this page : http://www.arcademint.com

 

i just used this styles for the Thumbnail images in my site..

 

.thumbSyle

{

border-width:1px;

border-style:solid;

border-color:#525252;

padding:2px;

margin-right: 6px;

}

 

its looking fine in FireFox & Opera..but not in IE !

 

can anyone PLEASE help on this ? i am trying this for a few days  ;D

 

here is the differents between FireFox & IE [Picture Attached]

 

all i need to do is.. just a padded white colored 1px border aroud my thumbnails..it will look nice on my site..

 

any tips OR ideas ?

 

Thanks & Regards,

Tharshan

MintGroup.

 

[attachment deleted by admin]

Link to comment
Share on other sites

I looked at your html source code and you have no class attached to your actual thumbnail image tags.  A search for your  'thumbSyle' class in your html source code yielded no results.  You have  (class='gamelink') in the links surrounding the thumbnails. 

 

If you do not specify the padding for images, ff uses 0px padding but ie will use 2px padding when in quirks mode.

Link to comment
Share on other sites

yes..

 

i changed something link that from a tutorial

 

but that one also not working..

 

 

here is the CSS i used.

 

.gamelink:link {

color: #FFFFFF;

text-transform:capitalize;

text-decoration: underline;

    font-size:12px;

font-weight: bold;

 

}

 

 

 

.gamelink:visited {

 

color: #FFFFFF;

text-transform:capitalize;

text-decoration: underline;

    font-size:12px;

font-weight: bold;

 

}

 

 

 

.gamelink:hover {

 

color: #99CC00;

  text-transform:capitalize;

text-decoration: underline;

    font-size:12px;

font-weight: bold;

 

}

 

.gamelink img{

 

border-width:1px;

border-style:solid;

border-color:#525252;

padding:2px;

margin-right: 6px;

}

 

 

 

and the HTML is like as

<a href="a.html" class="gamelink"><img src="images/thumb1.png"></a>

 

or if you know any other way to do padded borders for the linked images.. can u tell me please ?

 

 

thanks..

.gamelink:hover img{

 

border-width:1px;

border-style:solid;

border-color:#9a9a9a;

padding:2px;

margin-right: 6px;

}

 

 

Link to comment
Share on other sites

the image tag itself has to have padding set:

<a href="a.html" class="gamelink"><img class="myimages" src="images/thumb1.png"></a>
--notice I added: class="myimages" to the img tag
**the css for the myimages class**
.myimages { padding:0px;margin:0px; }

Link to comment
Share on other sites

the image tag itself has to have padding set:

<a href="a.html" class="gamelink"><img class="myimages" src="images/thumb1.png"></a>
--notice I added: class="myimages" to the img tag
**the css for the myimages class**
.myimages { padding:0px;margin:0px; }

 

 

thanks for your reply..

but.. i am still having problem with it..

i did this same method in : http://www.gameza.info

 

but..its also giving error in IE.

 

can u please give me a Fix ?

Link to comment
Share on other sites

I grabbed your code from your page below(perfect parking image):

<img border='0px' class='gamethumb' src='http://www.arcademint.com/img/parkingperfection2.png' alt='Play Perfect Parking' width='60' height='50' align='left' />

when you use the border attribute like that in html, leave off the 'px'

<img border='0' class='gamethumb' src='http://www.arcademint.com/img/parkingperfection2.png' alt='Play Perfect Parking' width='60' height='50' align='left' />

Link to comment
Share on other sites

I grabbed your code from your page below(perfect parking image):

<img border='0px' class='gamethumb' src='http://www.arcademint.com/img/parkingperfection2.png' alt='Play Perfect Parking' width='60' height='50' align='left' />

when you use the border attribute like that in html, leave off the 'px'

<img border='0' class='gamethumb' src='http://www.arcademint.com/img/parkingperfection2.png' alt='Play Perfect Parking' width='60' height='50' align='left' />

 

 

i did that..

....... <img border="0" class="gamethumb" ....................

 

still looking same ?

Link to comment
Share on other sites

did you want a 2px space around the images? Try adding the hspace and vspace attributes:

<img border='0' hspace="2" vspace="2" class='gamethumb' src='http://www.arcademint.com/img/parkingperfection2.png' alt='Play Perfect Parking' width='60' height='50' align='left' />

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.