Re: [css-d] border in image link

2005-10-25 Thread Donna Jones

Thanks Neal


a#imagebutton img { border: none;}



Sorry, I meant to write a.imagebutton img {border: none;}

-Neal


geez, i should have noticed that, too!!  I'm not "total newbie"; not 
very far off though!  :)  but i do know the difference between a class 
and id.  and, yes, it does work now...


best
Donna

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] border in image link

2005-10-25 Thread Neal

a#imagebutton img { border: none;}


Sorry, I meant to write a.imagebutton img {border: none;}

-Neal
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] border in image link

2005-10-25 Thread Donna Jones


Alternatively, you could assign that particular image/button an id or 
class:


src="images/decorating-button.jpg" width="86" height="51" alt="">


and use this css:

a#imagebutton img { border: none;}

-Neal



Neal, i tried this and it didn't work.  I've loaded the page again if 
anyone wants to look.  It seems like it should work but the only way 
I've found to change it is my changing the undohtml.css to "0".


I wonder if using "!important" would over-ride the undohtml; i did try 
that but wasn't sure if i had it in right since i've never used it before.


anyway, its purely academic now since i know now to change the 
undohtml.css but it does seem like it shouldn't be so hard to make it 
more specific.


cheers,
Donna


__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] border in image link

2005-10-25 Thread Donna Jones
My sympathies with going nuts :) - I had this same problem before. 
Here's the solution:


Thanks, just when one thinks *maybe* you're making some progress - then 
Bam!  its good to have empathy and sympathy.  I can't imagine saying to 
my client, well, i just spent three hours (not much exaggeration) trying 
to figure out how to make a link from that button! - and, obviously, i 
don't feel like this is the sort of thing that is chargeable.  just 
gotta try to keep one's sense of humor - that's about all one can do. :)



You could change

a img,:link img,:visited img { border:1px solid black;  }
to
a img { border: none; }

which would remove the border from all images within links.


This is what I did, i wrote the list as fast as i could to say I'd 
figured it out but the mail crossed, i think.


Alternatively, you could assign that particular image/button an id or 
class:


src="images/decorating-button.jpg" width="86" height="51" alt="">


and use this css:

a#imagebutton img { border: none;}


this is what i was trying to do and couldn't get it right somehow!  I'm 
going to re-visit it with your code just as a learning bit.


Thanks Anathema for seeing I had undohtml twice!  Geez - good eyes!

thanks again everyone.

Donna

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] border in image link

2005-10-25 Thread Neal

Donna Jones said the following:

really going nuts here trying to figure out how to get this one pixel 
border to be gone.  its the image/button on the left.  she wants it to 
be a link



http://www.westendwebs.net/susan/


My sympathies with going nuts :) - I had this same problem before. 
Here's the solution:


You could change

a img,:link img,:visited img { border:1px solid black;  }
to
a img { border: none; }

which would remove the border from all images within links.


Alternatively, you could assign that particular image/button an id or class:

src="images/decorating-button.jpg" width="86" height="51" alt="">


and use this css:

a#imagebutton img { border: none;}

-Neal
__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
__

css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


RE: [css-d] border in image link

2005-10-25 Thread John Potter

>trying to figure out how to get this one pixel border to be gone.

>http://www.westendwebs.net/susan/

Change this (in undohtml.css): a img,:link img,:visited img { border:1px
solid black; }

to this: a img, a:link img, a:visited img {border:0}

JohnP

John Potter

Johnpwebdesign - fast, effective, handcrafted websites:
http://www.johnp.co.nz
Masculinist Evolution in New Zealand:  http://www.menz.org.nz


__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


RE: [css-d] border in image link

2005-10-25 Thread Peter Williams
> From: Donna Jones
> 
> really going nuts here trying to figure out how to get this one pixel 
> border to be gone.  its the image/button on the left.  she 
> wants it to 
> be a link  seems like i've tried *everything* but i must not be 
> understanding or else forgetting something.
> http://www.westendwebs.net/susan/


Donna, 
Something along the lines of:
a img {border: none;}

You may also need a text-decoration: none;
depending on the circumstances

-- 
Peter Williams
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] border in image link

2005-10-25 Thread Donna Jones

Hi everyone:

really going nuts here trying to figure out how to get this one pixel 
border to be gone.  its the image/button on the left.  she wants it to 
be a link  seems like i've tried *everything* but i must not be 
understanding or else forgetting something.


have taken out all code for now, (except the bare minimum in that part) 
to make it easier to look at.


http://www.westendwebs.net/susan/

Thanks for setting me straight!

best
Donna

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/