Go Back   CodingForums.com > :: Client side development > Graphics and Multimedia discussions

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 08-26-2003, 09:53 PM   PM User | #1
Ben@WEBProp
Regular Coder

 
Join Date: Jun 2003
Location: Spokane, WA
Posts: 512
Thanks: 0
Thanked 0 Times in 0 Posts
Ben@WEBProp is an unknown quantity at this point
Wierd Footer thing

So I'm not exactly sure how I did this, and maybe it only looks like it to me, but when you look at this page it seems as if the footer is pushed into the background or somehow beveled...but then again maybe it looks totally dumb and I need my eyes checked.

Lemme know what you think!

Edit: I put this thread in this forum because it has to do with the graphic effect of something, although it is not a graphic. Tell me if I should put stuff like this elsewhere.


-Ben
__________________
Thoughts determine what you want,
Actions determine what you get.
Ben@WEBProp is offline   Reply With Quote
Old 08-26-2003, 10:13 PM   PM User | #2
MotherNatrsSon
Senior Coder

 
Join Date: Mar 2003
Location: OHIO
Posts: 1,438
Thanks: 1
Thanked 0 Times in 0 Posts
MotherNatrsSon is an unknown quantity at this point
These all need to be lower case first, then see what it looks like.

Code:
 /* Footer */
        div.footer {
		position: absolute;
                bottom: 0px;
        	left: 0px;
                Width: 90%;
		 BORDER-RIGHT: #dcdcdc 1px solid;
		 BORDER-TOP: #dcdcdc 1px solid;
                 BORDER-LEFT: #dcdcdc 1px solid;
                 BORDER-BOTTOM: #FFFFFF 1px solid;
		 PADDING: 2px 2px 2px 2px;
		 FONT-WEIGHT: normal;
		 FONT-SIZE: 10px;
                 FONT-FAMILY: verdana, Arial;
                 FONT-VARIANT: normal;
		 FONT-STYLE: normal;
		 TEXT-ALIGN: Center;
                 TEXT-TRANSFORM: none;
		 TEXT-DECORATION: none;
                 COLOR: #000000;
                 BACKGROUND-COLOR: #eee;
		 MARGIN: 10px 10px 10px 10px;
		}
__________________
[size=1]"If you want to be "in the biz" you are going to have to roll with the changes or get out, basically."
MotherNatrsSon is offline   Reply With Quote
Old 08-26-2003, 10:30 PM   PM User | #3
Ben@WEBProp
Regular Coder

 
Join Date: Jun 2003
Location: Spokane, WA
Posts: 512
Thanks: 0
Thanked 0 Times in 0 Posts
Ben@WEBProp is an unknown quantity at this point
Ok, it didn't change anything. Any reason I'm supposed to have them all in lower case?
__________________
Thoughts determine what you want,
Actions determine what you get.
Ben@WEBProp is offline   Reply With Quote
Old 08-26-2003, 10:49 PM   PM User | #4
MotherNatrsSon
Senior Coder

 
Join Date: Mar 2003
Location: OHIO
Posts: 1,438
Thanks: 1
Thanked 0 Times in 0 Posts
MotherNatrsSon is an unknown quantity at this point
Quote:
Originally posted by Ben@WEBProp
Ok, it didn't change anything. Any reason I'm supposed to have them all in lower case?
"Standards compliance" all attributes need to be lower case.

I'll look a little deeper.

Is this the only page it does it on?

MNS
__________________
[size=1]"If you want to be "in the biz" you are going to have to roll with the changes or get out, basically."
MotherNatrsSon is offline   Reply With Quote
Old 08-26-2003, 11:06 PM   PM User | #5
Ben@WEBProp
Regular Coder

 
Join Date: Jun 2003
Location: Spokane, WA
Posts: 512
Thanks: 0
Thanked 0 Times in 0 Posts
Ben@WEBProp is an unknown quantity at this point
I appreciate your helpful research, and I will make sure the rest of my css stays in lowercase. The effect on the footer happens on every page, and it is not so much a problem if it looks alright. It looks fine to me, but what do you think as far as:

1) How "ugly/cool" it is

2)How it occured

Thanks!

-Ben
__________________
Thoughts determine what you want,
Actions determine what you get.
Ben@WEBProp is offline   Reply With Quote
Old 08-26-2003, 11:12 PM   PM User | #6
Ben@WEBProp
Regular Coder

 
Join Date: Jun 2003
Location: Spokane, WA
Posts: 512
Thanks: 0
Thanked 0 Times in 0 Posts
Ben@WEBProp is an unknown quantity at this point
Whoops, forgot something!

I am only having 2 problems with it thus far:

1) The thing wont become centered, but I am 75% sure that I can get this figured out by tomorow.

2) The stupid thing will SOMETIMES (but not always) overlap the bottom-most content of the page (usually the last line or two)

Any reasons why?

Thanks...again!

-Ben
__________________
Thoughts determine what you want,
Actions determine what you get.
Ben@WEBProp is offline   Reply With Quote
Old 08-27-2003, 02:03 AM   PM User | #7
MotherNatrsSon
Senior Coder

 
Join Date: Mar 2003
Location: OHIO
Posts: 1,438
Thanks: 1
Thanked 0 Times in 0 Posts
MotherNatrsSon is an unknown quantity at this point
This is why it looks like that:

BORDER-RIGHT: #dcdcdc 1px solid;
BORDER-TOP: #dcdcdc 1px solid;
BORDER-LEFT: #dcdcdc 1px solid;
BORDER-BOTTOM: #FFFFFF 1px solid;

If you do not want it to look like that remove the border or change it so it looks like you want it to.

I should have seen that one right off. D'oh!!

As far as it overlapping, I guess I need to see a page that it does that on to tell.

Center it the same way you centered your container div.

The attribute being upper case could cause a rendering problem in some browser I suppose. Not real sure on that one but if it were me I 'd change it all to lower case.


MNS
__________________
[size=1]"If you want to be "in the biz" you are going to have to roll with the changes or get out, basically."
MotherNatrsSon is offline   Reply With Quote
Old 08-27-2003, 04:35 PM   PM User | #8
Ben@WEBProp
Regular Coder

 
Join Date: Jun 2003
Location: Spokane, WA
Posts: 512
Thanks: 0
Thanked 0 Times in 0 Posts
Ben@WEBProp is an unknown quantity at this point
Oh, alright. I think I see t now, in that the borders are all slightly darker than the bg, and the bottom border is white. I dont remember doing that...but oh well!

Thanks! It always looked to me like a bevel effect rather than a white line on the bottom.

-Ben
__________________
Thoughts determine what you want,
Actions determine what you get.
Ben@WEBProp is offline   Reply With Quote
Old 08-27-2003, 05:07 PM   PM User | #9
cg9com
Senior Coder

 
Join Date: Jul 2002
Posts: 1,628
Thanks: 0
Thanked 0 Times in 0 Posts
cg9com is an unknown quantity at this point
You also should incase that address in the footer with an <address> element.
Semantic issues, you understand.
__________________

Moderator: General web building

Get out from under them, resist and multiply.
Get out from under precipice and see the sky.
cg9com is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 01:07 AM.


Advertisement
Log in to turn off these ads.