Design Troubles

This is a discussion on "Design Troubles" within the Web Page Design section. This forum, and the thread "Design Troubles are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Closed Thread
 
LinkBack Thread Tools
  #1 (permalink)  
Old Mar 18th, 2005, 16:01
New Member
Join Date: Mar 2005
Location: United States
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Design Troubles

I've been working on a site design and I can't seem to get the page to look correctly. The problem is easily seen, but to me not easily fixed. I've tryed a number of things, but haven't had any luck.

The design looked fine using the transitional doctype in mozilla, but not in IE. I switched to the strict doctype and mozilla looks the same as in IE now. It has been deemed compliant in both XHTML 1.0 & CSS.

It appears to me to be some sort of padding or margin issue, but I'm not sure. Can someone please take a look at it for me and either give me a solution or point me in the right direction?

http://www.accessadult.org
http://www.accessadult.org/style.css

  #2 (permalink)  
Old Mar 21st, 2005, 15:27
Junior Member
Join Date: Jul 2004
Posts: 32
Thanks: 0
Thanked 0 Times in 0 Posts
I can't see any problems...
  #3 (permalink)  
Old Mar 21st, 2005, 16:15
Most Reputable Member
Join Date: Jul 2003
Posts: 1,856
Thanks: 0
Thanked 0 Times in 0 Posts
When I looked yeterday there were problems, but I didn't have time to look into them in detail. Now they're obviously fixed - I assume you found the answer you were looking for?
  #4 (permalink)  
Old Apr 6th, 2005, 05:32
New Member
Join Date: Mar 2005
Location: United States
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Sorry I lost track of this thread...

Yes the design issue has been resolved unfortunately not to my liking as it doesn't validate now. In order to get it to view correctly for IE & Mozilla I had to add a padding to IE but not to Firefox... Here is the coding I used to fix the problem.

padding: 0px;
* padding: 3px 0px 0px 0px;

That fixes all the issues, but it gives me validation errors because of it.
  #5 (permalink)  
Old Apr 6th, 2005, 10:15
Reputable Member
Join Date: Aug 2003
Location: United Kingdom
Posts: 341
Thanks: 0
Thanked 0 Times in 0 Posts
just drop the *.
also, when using 0, the units don't need to be specified e.g.

padding: 0px;
padding: 3px 0px 0px 0px;

is the same as:

padding: 0;
padding: 3px 0 0 0;
  #6 (permalink)  
Old Apr 25th, 2005, 14:33
New Member
Join Date: Apr 2005
Location: Oslo, Norway
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
If you want to feed padding only to IE, just use the selector that only IE is stupid enough to read the contents of:

* html <your element> {
padding: 3px 0 0 0;
}

It's a valid selector, allthough most browsers will understand that it doesn't actually describe any element at all seing as html may never have a parent. IE (6, 5.5, 5) on the other hand sees this as html <element>. Handy and valid trick!
Closed Thread

Tags
design, troubles

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 On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
having some troubles luv2php PHP Forum 7 May 26th, 2008 05:40
IE Troubles motormaniac Web Page Design 0 May 11th, 2008 00:01
IE troubles and more, what else is new Maverick25r Web Page Design 4 Oct 18th, 2006 17:40
PHP Troubles Maverick25r PHP Forum 1 Sep 1st, 2006 03:22
IE troubles Maverick25r Web Page Design 2 Jul 24th, 2006 23:34


All times are GMT. The time now is 13:40.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

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