|
|
Welcome to our Graphic Design Forums! Your Design Forums has active graphic design forums where community members discuss graphic design related topics.
|
|
|
|
|||||||
![]() |
|
Thread Tools | Display Modes |
|
|
#1 |
|
Designer
Join Date: Mar 2008
Posts: 26
|
Hi guys. I'm teaching myself CSS at the moment for me very own site (yay), but I'm having a couple of problems with the little gritty bits.
The main problem is that the images with links appear normal in Safari, but in Firefox they have borders as well as the regular < p > link underlines as well. Ideally I'd like to give them a thin border, with no underline, in every browser. Any CSS gurus out there than can help? ![]() |
|
|
|
|
|
#2 |
|
Designer
Join Date: Jan 2008
Location: Denmark
Posts: 61
|
Hey, not quite sure what you want?
Your images should have no borders at all? And you want a border around your <p> tags? For the images, you just put in: img { border: none; } in your stylesheet and if you want to add borders to a specific image, you just type the div or class name first and then img. Like: You want borders around your <div id="gallery"> images, you just add: #gallery img { border: 1px solid black; } in your stylesheet. and for the underlines on your links, type a { text-decoration: none; } anywhere in your stylesheet, as well. Hope it's understandable, good luck ![]() |
|
|
|
|
|
#3 |
|
Football geek
|
You would get better help if you provided us with a link. We can't picture ourself what you want to do.
![]()
__________________
http://juvenorge.com | Personal site (Comming soon) |
|
|
|
|
|
#4 |
|
Designer
Join Date: Jan 2008
Posts: 70
|
Hey guys. I taught myself CSS form the W3C site. They have some great example though there is a lot of stuff you have to learn on your own.
Like CSS in Firefox differs from IE and bla bla bla. A GREAT TOOL! That will save you a TON of time on the frame work is Blueprint from Google. It basically is a bunch of CSS files that have different elements (columns, rows, layouts) that your going to use in your frame work. It will help you out a lot and save you a lot of time. http://code.google.com/p/blueprintcss/ |
|
|
|
|
|
#5 |
|
Designer
Join Date: Jan 2008
Posts: 50
|
If you want to format a link to have no underlines you can do the following.
Code:
a , a:hover , a:visited , a:active
{
text-decoration: none;
}
Code:
img
{
border: none;
}
|
|
|
|
|
|
#6 |
|
Designer
Join Date: Mar 2008
Posts: 26
|
Agh, I completely forgot I posted this.I solved the problem by removing the images from the <p> tag. Thanks for your help anyways guys. Site should be up soon ^_^ |
|
|
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|