Firefox related problem

Blindfoldjump

New Member
RedBox Problem

Hey guys

Im working on my website:
http://www.blindfoldjump.com/

And I was just testing that everything works so far. And everything looks good in IE and in Opera, but in Firefox the links gets a red box (or red border, or what you want to call it) when you click on them. This annoys me, and I cant figure out what to do about this.

Anybody know how to solve this?


(By the way, this is my first site ever, so Im pretty much a rookie)
 
Last edited:

wachtn

New Member
Using Chrome, Your site does not work I see a few links on the top and below there is a black box with nothing inside. I looked at every page and it is the same.

If this site is still in the site design stage then it looks good and I cant wait to see it finished. Your blog link does not work though.

Almost forgot. What software are you using to build your site?
 

JordanT

New Member
I'm using Firefox and I don't see any problems...

I just had a look at your HTML and it looks like you've fixed it with some HTML...

HTML:
<img src="example-pic.jpg" border="0">

While that's one way of doing it, and it obviously works, another way would be to use CSS. With CSS you can set one declaration to cover all image borders; which means you don't need to apply it to each image individually.

Code:
img { border-style: none; }

This one little line of CSS would prevent any images on your page from displaying borders.

I use this in most of the sites I design purely because I don't like borders around images and, if I do decide to use borders, I like to specify my own style.
 

constanthosting

New Member
I'm using firefox 3.0.10 and I don't see a red border around the links. The info that JordanT provided should work for you, Let us know how it turns out!
 

Blindfoldjump

New Member
Thanks for answering guys!

Yes I did solve it.

wachtn:

Yes you are right, the site is not finished yet.
Im working in Dreamweaver.

JordanT:
Thanks for helping, I didnt solve it with the html you mentioned. I googled it and found a css-answer to the problem. I added the line:
a { outline:none; }
to the header, and it worked!

constanthosting:
Tnx I will!



Hopefully the site will be ready for launch in like 1 or 2 days... wish me luck :)
 

Blindfoldjump

New Member
constanthosting: tnx :)

Hey again!
So the site is almost ready, been having alot of problems but everything seems to be working now. There are still a few things to fix before everything is ready, for example the first page :D

Check it out: www.blindfoldjump.com
Would be great to get any feedback and suggestions from you guys
 
Last edited:
Top