473,769 Members | 7,408 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 1266
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:31 px". Do the same on the
XHTML one.

--
Els http://locusmeus.com/
accessible web design: http://locusoptimus.com/
Jul 15 '06 #2
"Els" <el*********@ti scali.nlwrote in message
news:1f******** *************** ******@40tude.n et...
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:31 px". 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*********@ti scali.nlwrote in message
news:wv******** *************** ******@40tude.n et...
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********@yah oo.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********@yah oo.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.n lwrote in message
news:mp******** *************** *********@4ax.c om...
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
2572
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
6160
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 my mappings between named colors, HEX values and the Long Integer values used in Access are not jibbing. Anyone have a nice list laying around? Danny J Lesandrini dlesandrini@hotmail.com
2
1392
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 simply as I can. 1) I have a class tha does something with colors. All default values are obviously NOT serializad. Instead, they are serialized when they are
5
14546
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 Color cDay; private Color cNight; private Color cLuminous;
1
1429
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 but in paypal.com cart it only displays #'s 1 and 6. 2-5 get cut out. Paypal tech gave a website of www.members.aol.com/paypalhelper and said to create select multiples. I did this but there's still something wrong with my code. I can select...
9
1912
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 user sees all the colors listed on the page with hyperlinks that open the "mixes" page. The mixes page goes through each record, compares it with all other records in a ratio up to "maxratio". If it finds a ratio that matches the redvalue of...
1
2464
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 Form on I created a search form: http://i197.photobucket.com/albums/aa109/ebernedo/DiscSearchForm.jpg
0
994
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 out... Here's what I know about brackets - If they are used around a reserved word then that becomes a usable (escaped) name (i.e. Dim as Integer). If they are used around a type in a DIM or NEW type statement then they're redundant and actually go...
3
3927
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 messing up. Problems:
0
9423
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10214
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10048
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9865
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8872
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6674
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5304
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5447
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3963
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

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.