Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
giuseppe craparotta #1
positioning and border color of divs in IE5.x
Hello,
again thanks again to those helping me / that have helped me already.
here finally the address of my first home page: [url]www.giuseppecraparotta.it[/url] ,
showing the web page of my first client.
I made a massive use of absolutely positioned boxes. I'd say it was
addictive...
Maybe someone knows how I can hamper the border surrounding the female smile
pictures from appearing black on IE5.0. Why does that happen? I want the border
white... Interesting that the border appears black also in the wysiwyg view of
Dreamweaver. Anybody has the solution of this "noir" mistery? :-)
Please feel free to make comments on the page, concerning the technical part
and not the design. I already know you'll find a lot of mistakes (Murray, r u
there? ;-) ) and I'm prepared to the cold shower of your excellent crytical
sense.
I already know that the page is too heavy for 56k modems. I'm thinking about
how to make it lighter, although it seems hard.
I might decide to give you a present to show my gratitude!
ciao,
Giuseppe, Rome
giuseppe craparotta Guest
-
removal of border color for image links
"thysta11" webforumsuser@macromedia.com wrote: Try the "IE Link Scrubber" extension available the DW Exchange (the MM site). -- Dan... -
Mozilla + table border and color
Hi there - I just wondered why a TABLE BORDER COLOR don't always appear in Mozilla as the nicely to in IE? Example:... -
Border image color
How can you control the color of the border around image? I either get Blue or Purple. Sometimes in program it is blue but ion browser shows purple.... -
Newbie - on projector's border color
Hi, How do I make the borders of my projector black or transparent? Right now they are the same color as the stage... Any help given is well... -
Text Without extra Color on Border
Do you have any OS level anti-aliasing turned on? If not, could you post the PNG file somewhere? Cheers, Sam "Dave" <kurrykid@yahoo.com>... -
giuseppe craparotta #2
positioning and border color of divs in IE5.x
Hello,
again thanks again to those helping me / that have helped me already.
here finally the address of my first home page: [url]www.giuseppecraparotta.it[/url] ,
showing the web page of my first client.
I made a massive use of absolutely positioned boxes. I'd say it was
addictive...
Maybe someone knows how I can hamper the border surrounding the female smile
pictures from appearing black on IE5.0. Why does that happen? I want the border
white... Interesting that the border appears black also in the wysiwyg view of
Dreamweaver. Anybody has the solution of this "noir" mistery? :-)
Please feel free to make comments on the page, concerning the technical part
and not the design. I already know you'll find a lot of mistakes (Murray, r u
there? ;-) ) and I'm prepared to the cold shower of your excellent crytical
sense.
I already know that the page is too heavy for 56k modems. I'm thinking about
how to make it lighter, although it seems hard.
I might decide to give you a present to show my gratitude!
ciao,
Giuseppe, Rome
giuseppe craparotta Guest
-
LazyMoon #3
Re: positioning and border color of divs in IE5.x
The border appears black because of an error in your CSS. Since you are
specifying the border property twice, most browsers will disregard the previous
property for the new one.
Instead of writing:
border:#FFFFFF; border:solid;
As you did, I suggest you shorten it to:
border: solid 3px #FFFFFF;
LazyMoon Guest
-
LazyMoon #4
Re: positioning and border color of divs in IE5.x
Also, your markup is a little too congested. You can make your page smaller by
using HTML tags instead of styling paragraphs.
For example, you could replace:
<p style="font-size:18px; font-weight:bold;">Lo studio</p>
With:
<h2>Lo studio</h2>
And use the CSS:
[i]h2 {
font-size: 18px;
font-weight: bold;
}[\i]
This also helps make your site easier to navigate for people with screen
readers.
If I where you, I would replace your pixel sizing with 'ems' and percentages,
as well remove all the images used as background images and instead use CSS to
apply those to the DIV's instead.
Finally, always make sure you validate your CSS and (X)HTML;
[url]http://validator.w3.org/[/url]
[url]http://jigsaw.w3.org/css-validator/[/url]
LazyMoon Guest



Reply With Quote

