473,387 Members | 1,530 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Help with colors and IE, please.

I am working on the following site: http://bricktroop60.awardspace.com/ for
my scout troop. It looks good in Firefox and Opera, but Internet Exploder
renders the colors differently. Does anyone know why this happens and if
so, can you explain why and how to fix it in simple terms (I am new at
this)?

Another question - The xhtml validation link has a border around it in FF
and IE, but not Opera. Any ideas on why this happens and how to remove it?

Thank you for any help that you can provide.

Jul 15 '06 #1
9 1255
Els
Adam wrote:
I am working on the following site: http://bricktroop60.awardspace.com/ for
my scout troop. It looks good in Firefox and Opera, but Internet Exploder
renders the colors differently. Does anyone know why this happens and if
so, can you explain why and how to fix it in simple terms (I am new at
this)?
I see the same colours in IE as in FF. Are both those browsers on the
same machine for you?
Another question - The xhtml validation link has a border around it in FF
and IE, but not Opera. Any ideas on why this happens and how to remove it?
You got rid of the border on the CSS validation link, with the style
attribute value "border:0;width:88px;height:31px". Do the same on the
XHTML one.

--
Els http://locusmeus.com/
accessible web design: http://locusoptimus.com/
Jul 15 '06 #2
"Els" <el*********@tiscali.nlwrote in message
news:1f*****************************@40tude.net...
Adam wrote:
>I am working on the following site: http://bricktroop60.awardspace.com/
for
my scout troop. It looks good in Firefox and Opera, but Internet Exploder
renders the colors differently. Does anyone know why this happens and if
so, can you explain why and how to fix it in simple terms (I am new at
this)?

I see the same colours in IE as in FF. Are both those browsers on the
same machine for you?
I get different colors in IE on the same machine (it happens on 2 different
machines at my home, I have not checked it elsewhere yet).
>
>Another question - The xhtml validation link has a border around it in FF
and IE, but not Opera. Any ideas on why this happens and how to remove
it?

You got rid of the border on the CSS validation link, with the style
attribute value "border:0;width:88px;height:31px". Do the same on the
XHTML one.
Thank you.
--
Els http://locusmeus.com/
accessible web design: http://locusoptimus.com/

Jul 15 '06 #3
Els
Els wrote:
Adam wrote:
>I am working on the following site: http://bricktroop60.awardspace.com/ for
I see another problem. In IE, the letters "equests" are repeated below
the page on the left. This is caused by a bug, which is usually
triggered by a combination of having comments in the source, and
adding all widths in percentages up to 100%.

On your page, if you take out the comments in the footer, the problem
may disappear already. Not tested.

--
Els http://locusmeus.com/
accessible web design: http://locusoptimus.com/
Jul 15 '06 #4

"Els" <el*********@tiscali.nlwrote in message
news:wv*****************************@40tude.net...
Els wrote:
>Adam wrote:
>>I am working on the following site: http://bricktroop60.awardspace.com/
for

I see another problem. In IE, the letters "equests" are repeated below
the page on the left. This is caused by a bug, which is usually
triggered by a combination of having comments in the source, and
adding all widths in percentages up to 100%.

On your page, if you take out the comments in the footer, the problem
may disappear already. Not tested.
Thank you again.
>
--
Els http://locusmeus.com/
accessible web design: http://locusoptimus.com/

Jul 15 '06 #5
Adam wrote:
I am working on the following site: http://bricktroop60.awardspace.com/ for
my scout troop. It looks good in Firefox and Opera, but Internet Exploder
renders the colors differently. Does anyone know why this happens and if
so, can you explain why and how to fix it in simple terms (I am new at
this)?

Another question - The xhtml validation link has a border around it in FF
and IE, but not Opera. Any ideas on why this happens and how to remove it?
include this

border="0"

in <imgtag for the image with the blue border. By default all images
that are links have a blue border. For this reason it's always a good
idea to include this in all <imgtags..

as for colors, I notice different font colors in IE and Firefox. To be
sure font-colors are always what you want in all browsers make sure you
set font colors, you can set this direclty in HTML, but since you have a
stylesheet (always best) you can do, in stylesheet:

h2 {color:#990000}
p {color:#990000}

if you want different colors for different paragraphs you can do:

<p class="two"... </p>

and then in CSS:

p.two {color:#CCCCCC}

or if you want to use the this color-attribute for other text-containing
elements:

.two {color:#CCCCCC}

then you can include

class="two"

in any element containing text (<td>, <div>, <span>, etc..) for
example: <span class="two"... </span and they will all have same
font color..
HTH. Good luck..
Jul 16 '06 #6
On Sat, 15 Jul 2006 22:19:30 -0400, maya <ma********@yahoo.comwrote:
>include this

border="0"

in <imgtag for the image with the blue border. By default all images
that are links have a blue border. For this reason it's always a good
idea to include this in all <imgtags..
The border is inserted to inform the reader that the image is a link.
Why make an image into a link and then hide that fact from the reader?

(Yes, I know it is sometimes obvious that an image is a link - but your
"always a good idea" is a far too sweeping generalisation.)

--
Stephen Poley

http://www.xs4all.nl/~sbpoley/webmatters/
Jul 16 '06 #7
Adam wrote:
I am working on the following site: http://bricktroop60.awardspace.com/ for
my scout troop. It looks good in Firefox and Opera, but Internet Exploder
renders the colors differently. Does anyone know why this happens and if
so, can you explain why and how to fix it in simple terms (I am new at
this)?
In what way are the colors different? Lighter? Darker? Dithered?
What is the color resolution of your monitor? 256 (8 bit) colors? Or
16/24/32 bit?
You could try setting all of the colors to their nearest "web-safe"
value. For instance, change #e6e6cd to #eec, #ffd65a to #fd5.

In IE there is a spurious "equest" below the footer. Change the width of
#footer to 99% to get rid of it.
Another question - The xhtml validation link has a border around it in FF
and IE, but not Opera. Any ideas on why this happens and how to remove it?
Having those links for validation is meaningless to most visitors.

--
jmm (hyphen) list (at) sohnen-moe (dot) com
(Remove .AXSPAMGN for email)
Jul 16 '06 #8
Stephen Poley wrote:
On Sat, 15 Jul 2006 22:19:30 -0400, maya <ma********@yahoo.comwrote:
>include this

border="0"

in <imgtag for the image with the blue border. By default all images
that are links have a blue border. For this reason it's always a good
idea to include this in all <imgtags..

The border is inserted to inform the reader that the image is a link.
Why make an image into a link and then hide that fact from the reader?

(Yes, I know it is sometimes obvious that an image is a link - but your
"always a good idea" is a far too sweeping generalisation.)
I guess so.. but very seldom do we see images that are links with those
bland-looking blue borders generated autom. by browsers; usu. when an
img is a link this is made obvious in other ways (content of image,
text, etc..) many times it's done in such a way that user can't even
tell if link is an image or plain text.. main thing, I think, is to
make it obvious to user that img is a link, and there are ways to do
this other than letting the browser generate a border around it.
Jul 17 '06 #9

"Stephen Poley" <sb******************@xs4all.nlwrote in message
news:mp********************************@4ax.com...
The border is inserted to inform the reader that the image is a link.
Why make an image into a link and then hide that fact from the reader?
There was a time when this was perfectly obvious, but that time is long
passed. Most viewers don't know squat about blue borders. They want some
kind of hover effect.

Daibhidh
Jul 18 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Allan | last post by:
Please help, below is my problem. Let's say I have 2 tables, a Products table and a Colors table that go as follow: Table Products prodID Name 1 shirt 2 tshirt
6
by: Danny Lesandrini | last post by:
I'm using an Access database to drive a web site and the colors of various table backgrounds are stored in Access. I want users of the Access database to be able to select colors for the site, but...
2
by: Carlo, MCP | last post by:
Hi, Sorry for posting twice, but I hope in your comprehension. Please help me! I'm troubling from months with a serious serialization problem that I'm not able to solve. I try to describe as...
5
by: Stick | last post by:
Hi, I normally program in C++, and I'm trying to write this little tool in C#, but I quickly realized that I can't use pointers, so instead I need to create an array of 3 Color 's private...
1
Wiccadwitch
by: Wiccadwitch | last post by:
Could someone please help??? I'm using paypal's shopping cart which allows for 2 options (such as colors or sizes). I need up to six options with 40 or so colors to choose from. I tried adding 6...
9
by: TF | last post by:
Hello all, I made a ASP.NET 2.0 site that shows possible "recipes" for paint colors stored in an access dbase. Basically, 1000 colors are stored with specific RGB values in separate columns. A...
1
by: ebernedo | last post by:
Hey guys, I have two main questions First off (pictures are kind of blurry) I have this table http://i197.photobucket.com/albums/aa109/ebernedo/DiscTable.jpg And thats my database I use my...
0
by: alan4cast | last post by:
I'm not a really new programmer, but I'm still working on learning all of the .net things that I should know. So when I came across this one, I started to dig into it so see if I could figure it...
3
by: nigelesquire | last post by:
Please help! I'm trying to clone and delete multiple rows with JavaScript. I need two delete buttons that work...! I only have one for now, but it's not working properly, the output count is...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.