Welcome to Tech Support Forum home to more then 136,000 problems solved. Issues have included: Spyware, Malware, Virus Issues, Windows, Microsoft, Linux, Networking, Security, Hardware, and Gaming Getting your problem solved is as easy as:
1. Registering for a free account
2. Asking your question
3. Receiving an answer

Registered members:
* Get free support
* Communicate privately with other members (PM).
* Removal of this message
* See fewer ads.
* And much more..

 



Want to know how to post a question? click here Having problems with spyware and pop-ups? First Steps
Go Back   Tech Support Forum > Design Forum > Web Design & Programming
User Name
Password
Site Map Register Donate Rules Blogs Mark Forums Read


Web Design & Programming Discussion of web design, and server-side & client-side scripting

Reply
 
LinkBack Thread Tools
Old 04-22-2007, 10:53 AM   #1 (permalink)
Registered User
 
rabidjade's Avatar
 
Join Date: Feb 2007
Posts: 57
OS: WinXP


Send a message via AIM to rabidjade
Adding a footer box with CSS

This is what I currently have:

http://www.policeposers.com/test/

I'm still learning CSS so bear with me. I want to add a box to the bottom that I can put my copyright info into along with anything else I might need in the future. I want it to be the same style as the header box where it goes as wide as the page goes.
rabidjade is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Important Information
Join the #1 Tech Support Forum Today - It's Totally Free!

TechSupportForum.com is a leading support website for your computer needs. We offer free, friendly and personalized computer support. Why pay to have your computer fixed when you can do it for free.

Join TechSupportforum.com Today - Click Here

Old 04-22-2007, 11:15 AM   #2 (permalink)
Design Team
 
DJ-Zep's Avatar
 
Join Date: Mar 2006
Location: Philadelphia
Posts: 1,541
OS: Windows Vista Home Premium (x64)

My System

Re: Adding a footer box with CSS

Before you go on, you may want to validate your webpage. This will make it easier to go on ensuring that there will be no errors.
__________________
Nice music blog

Nvu || Notepad++ || Apache || PHP || Keep TSF Alive

"The great thing about a computer notebook is that no matter how much you stuff into it, it doesn't get bigger or heavier."
DJ-Zep is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 04-22-2007, 11:30 AM   #3 (permalink)
Registered User
 
rabidjade's Avatar
 
Join Date: Feb 2007
Posts: 57
OS: WinXP


Send a message via AIM to rabidjade
Re: Adding a footer box with CSS

Nice, forgot about that. Is there a place that can specify where the errors are? With how much I know about CSS this could be a week long project.

Last edited by rabidjade; 04-22-2007 at 11:59 AM.
rabidjade is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 04-22-2007, 12:28 PM   #4 (permalink)
Registered User
 
rabidjade's Avatar
 
Join Date: Feb 2007
Posts: 57
OS: WinXP


Send a message via AIM to rabidjade
Re: Adding a footer box with CSS

I was playing with this validator and am not impressed. It's pointing at errors that are counterdicted all over the internet (meta tags as an example). Every web site I plugged in there including high traffic popular ones had numerous errors.

Also my main error is it's not finding a character set when I already have one.

Quote:
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
This is the one that dreamweaver uses on any new page you open. Does that look right to you?
rabidjade is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 04-22-2007, 04:08 PM   #5 (permalink)
Design Team
 
DJ-Zep's Avatar
 
Join Date: Mar 2006
Location: Philadelphia
Posts: 1,541
OS: Windows Vista Home Premium (x64)

My System

Re: Adding a footer box with CSS

You're using XHTML 1.0, so you have to close your tag. With any tag that doesn't have a closing tag, you must put a forward slash before he ending parenthesis. For example, <table> requires a </table> closing tag. However <meta> doesn't so you would use <meta />.

For the char set, use:
Code:
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1" />
Force the validator to use XHTML 1.0 Transitional instead of Strict so you don't go bald from pulling your hair out. Also, you don't have to follow EVERYTHING that the validator recommends, just use it to find minor errors. It's always tough to have a good-looking website that is 100% valid.

Let me guess, you tested google in the validator.
__________________
Nice music blog

Nvu || Notepad++ || Apache || PHP || Keep TSF Alive

"The great thing about a computer notebook is that no matter how much you stuff into it, it doesn't get bigger or heavier."
DJ-Zep is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 04-22-2007, 06:59 PM   #6 (permalink)
Registered User
 
rabidjade's Avatar
 
Join Date: Feb 2007
Posts: 57
OS: WinXP


Send a message via AIM to rabidjade
Re: Adding a footer box with CSS

I tested a few web sites that I knew were good and it still failed them. I'll try the char set when I get a chance, at work at the moment. I think what might be my hang up with the validator is my meta tags and some head information is inserted from a seperate file inserted into the page with a php insert command. I don't think the validator likes that. I'll try more things when I get the chance.
rabidjade is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 04-22-2007, 07:11 PM   #7 (permalink)
Design Team
 
DJ-Zep's Avatar
 
Join Date: Mar 2006
Location: Philadelphia
Posts: 1,541
OS: Windows Vista Home Premium (x64)

My System

Re: Adding a footer box with CSS

Good thought, but that wouldn't be it. The validator validates HTML output of every file extension. Whether it be dynamic or not.
__________________
Nice music blog

Nvu || Notepad++ || Apache || PHP || Keep TSF Alive

"The great thing about a computer notebook is that no matter how much you stuff into it, it doesn't get bigger or heavier."
DJ-Zep is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 04-22-2007, 07:27 PM   #8 (permalink)
Registered User
 
rabidjade's Avatar
 
Join Date: Feb 2007
Posts: 57
OS: WinXP


Send a message via AIM to rabidjade
Re: Adding a footer box with CSS

I'll tinker with it when I home. I also noticed the char code you posted above was the same I have on my web page.
rabidjade is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 04-22-2007, 08:04 PM   #9 (permalink)
Design Team
 
DJ-Zep's Avatar
 
Join Date: Mar 2006
Location: Philadelphia
Posts: 1,541
OS: Windows Vista Home Premium (x64)

My System

Re: Adding a footer box with CSS

I'm looking at your source right now, and there is no char set definition. Put it in between the <head> </head> tag.
__________________
Nice music blog

Nvu || Notepad++ || Apache || PHP || Keep TSF Alive

"The great thing about a computer notebook is that no matter how much you stuff into it, it doesn't get bigger or heavier."
DJ-Zep is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 04-22-2007, 09:59 PM   #10 (permalink)
Registered User
 
rabidjade's Avatar
 
Join Date: Feb 2007
Posts: 57
OS: WinXP


Send a message via AIM to rabidjade
Re: Adding a footer box with CSS

Quote:
Originally Posted by DJ-Zep View Post
I'm looking at your source right now, and there is no char set definition. Put it in between the <head> </head> tag.
Yea, I took out the header information to try something and didn't put it back before I came to work. I'll insert the header information when I get home.
rabidjade is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 04-23-2007, 12:11 AM   #11 (permalink)
Registered User
 
rabidjade's Avatar
 
Join Date: Feb 2007
Posts: 57
OS: WinXP


Send a message via AIM to rabidjade
Re: Adding a footer box with CSS

Got it down to 35 errors instead of it telling it couldn't even test the page.

As for the cell I need I might just try to copy the code of the left content cell code and position the new cell below the left content cell. I'll do it tomorrow though, too late tonight.
rabidjade is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 04-23-2007, 12:14 PM   #12 (permalink)
Registered User
 
rabidjade's Avatar
 
Join Date: Feb 2007
Posts: 57
OS: WinXP


Send a message via AIM to rabidjade
Re: Adding a footer box with CSS

This is the code I have so far. What I want to do with the "bottom" box is make it a fixed distance from the "leftcontent" box so when the "lc" box grows or shrinks from my text/updates, the bottom box moves with it and stays at a fixed distance from it. I know the code isn't perfect but I'm still playing with it. Is there a way to do this?

css code here
rabidjade is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Reply


Thread Tools

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
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




All times are GMT -7. The time now is 06:02 AM.



Copyright 2001 - 2009, Tech Support Forum
Home Tips Plus | Outdoor Basecamp | Automotive Support Forum

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85