Re: [css-d] Firefox adds padding in strict mode?

2006-05-09 Thread Eric Vann
Just checked your site in both FireFox and Safari (latest version of both)
and saw no appreciable difference in how each was able to display the
site. So I'm unaware that there is a "problem", unless both of these
browsers share the same "bug".

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] float related trouble in Firefox

2006-04-28 Thread Eric Vann
Safari is the browser which responds with the problem you describe.
Firefox on the other hand is working properly. I am using Mac OSX 10.4.6
with Safari 2.0.3 and Firefox 1.5.0.1

 -- 
+-+
| Eric Geoffrey Vann, Webmaster Glenbard Township HS District #87 |
| VOICE:  630.942.7722 596 Crescent Boulevard |
| EMAIL:  [EMAIL PROTECTED]Glen Ellyn, IL 60137-4297 |
| WEB:http://www.glenbard.net/|
+-+
"Nothing compares to the simple pleasure of a bike ride." John F. Kennedy

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] massive css problem

2006-01-19 Thread Eric Vann
Joe Otten <[EMAIL PROTECTED]> on Thursday, January 19, 2006 at 10:42 AM
-0600 wrote:
>WinMerge has saved me hours of time in regards to comparing scripts
>[ http://winmerge.sourceforge.net/ ]http://winmerge.sourceforge.net/
> 
>Good Luck

Yep. The product I use is called BBEdit and runs on the Mac. It has an
automated DIFFERENCE (i.e. DIFF) function which displays each file in a
separate window and shows the lines which differ. Clicking on that line in
the difference window takes you to that line for edit purposes. Very handy
and a lifesaver.

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] massive css problem

2006-01-19 Thread Eric Vann
I often compare two files like yours using a simple text editor that
allows me to do a line-by-line comparison of both files. Of course if you
have altered the new file structure enough even this doesn't work.

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Problem with links as block-level elements

2005-06-14 Thread Eric Vann
I would suggest using an inline list of hyperlinks rather than nested
DIVs. The portion of your screen that resides more or less above the
buttons is all relegated to the outermost DIV which I believe is the
CONTACT US container. If you examine the area below each button it
properly shows the button area.

Sorry for try to explain this in words I'd much rather have modified your
code and tested out my suggestion but could not download the graphics from
your page nor all of the CSS files.

 -- 
+-+
| Eric Geoffrey Vann, Webmaster Glenbard Township HS District #87 |
| VOICE:  630.942.7722 596 Crescent Boulevard |
| EMAIL:  [EMAIL PROTECTED]Glen Ellyn, IL 60137-4297 |
| WEB:http://www.glenbard.net/|
+-+
"It is our choices that show what we truly are, far more than our
abilities"
  ~ Dumbledore, Harry Potter and the Chamber of Secrets

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] Re: floated list

2005-06-07 Thread Eric Vann
Your navlist and navcontainer DIVs are of differing heights. This is
problem how the styles should look.

#navlist {
width: 556px;
height: 20px;
background: url(index5f/nav_bg.gif) repeat-x;
}

#navcontainer  {
margin: 0 0 0 10px;
height: 20px
}

My guess is that you do NOT need both of these or if you wish to keep them
then do NOT specify the height in the ENCLOSED one. The height will be in
INHERITED property.

 -- 
+-+
| Eric Geoffrey Vann, Webmaster Glenbard Township HS District #87 |
| VOICE:  630.942.7722 596 Crescent Boulevard |
| EMAIL:  [EMAIL PROTECTED]Glen Ellyn, IL 60137-4297 |
| WEB:http://www.glenbard.net/|
+-+
"It is our choices that show what we truly are, far more than our
abilities"
  ~ Dumbledore, Harry Potter and the Chamber of Secrets

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] footer floating up

2005-06-07 Thread Eric Vann
I took a brief look at your site. I think I know the cause of your
problem. I use Adobe GoLive so will try and explain the problem in the
terms used by those familiar with that product.

Normally your footer is the last DIV inside the container you have chosen
to enclose the contents of your page. In order to get it to appear below
everything else all you need to do is have it CLEAR any other DIVs that
may have entered the text stream above it.

In this instance you have given the footer DIV a specific position as
shown here:

/* footer */
#footer {
font-family:Arial, Helvetica, sans-serif;
color:#33;
font-size:0.8em;
border-top-width: 1px;
border-top-style: dotted;
border-top-color: #33;
padding: 5px 0px 10px 5px;
position:absolute;
bottom:0px;
left:145px;
width:690px;
}

The moment you use the left and bottom positioning designations your DIV
is no longer moving with the rest of the text stream. This is how I would
have written that style:

#footer   {
color: #33;
font-size: 0.8em;
font-family: Arial, Helvetica, sans-serif;
padding: 5px 0 10px 150px;
position: absolute;
width: 690px;
clear: both;
border-top: 1px dotted #33
}

I had to adjust the left padding to push the text back under the right
column.

 -- 
+-+
| Eric Geoffrey Vann, Webmaster Glenbard Township HS District #87 |
| VOICE:  630.942.7722 596 Crescent Boulevard |
| EMAIL:  [EMAIL PROTECTED]Glen Ellyn, IL 60137-4297 |
| WEB:http://www.glenbard.net/|
+-+
"It is our choices that show what we truly are, far more than our
abilities"
  ~ Dumbledore, Harry Potter and the Chamber of Secrets

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/