is it normal?

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


 Subscribe in a reader

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

Notices




Reply
 
LinkBack Thread Tools
  #1  
Old Jan 5th, 2006, 04:24
Up'n'Coming Member
Join Date: Jul 2005
Location: montreal canada
Posts: 88
Thanks: 0
Thanked 0 Times in 0 Posts
is it normal?

Hey y`all,

Um, is it normal to have a significant difference between how a site (done in css) looks in one browser as compared to another? I mean, I think I`ve tweaked my site to the best of my abilities, but in one browser the text is kinda scrunched, but if I alter it, it`s too spaced in the other browser. Is this as good as it can get? Anyone have any tips or suggestions to share?

http://pyxnet.ath.cx/robin

Last edited by ivyholly; Jan 5th, 2006 at 04:31.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote

  #2  
Old Jan 5th, 2006, 14:28
herkalees's Avatar
Highly Reputable Member
Join Date: Jul 2005
Location: Massachusetts, USA
Age: 87
Posts: 576
Thanks: 0
Thanked 0 Times in 0 Posts
Re: is it normal?

It is actually not normal for things to be extremely different. Although I cannot pin-point the exact cause of your problems, I can only suggest one thing that comes to mind; starting your CSS file off with this:
* {margin:0; padding:0;}
It helps to put everything in check and make sure all browsers start with the same foundation of margin and padding.
In fact, while I'm at it, here is my default style sheet I use on every site I make:
Code: Select all
/*====================
Global Styles
======================*/
* {
margin: 0;
padding: 0;
}
body, html {
background-color: #fff;
color: #000;
padding: 0;
margin: 0;
}
body {
font: 85%/1.3em Tahoma, Arial, Helvetica, sans-serif;
}
/*====================
Link Styles
======================*/
a:link {
color: #00c;
}
a:visited {
color: #90c;
}
a:focus {
color: #06c;
}
a:hover {
color: #9c3;
}
a:active {
color: #f90;
}
/*====================
Heading Styles
======================*/
h1,h2,h3,h4,h5,h6 {
color: #000;
font-family: Trebuchet MS,Verdana,Arial,Helvetica,sans-serif;
}
h1 {
font-size: 1.8em;
margin: 0 0 .9em;
}
h2 {
font-size: 1.6em;
margin: 0 0 .8em;
}
h3 {
font-size: 1.4em;
margin: 0 0 0.7em;
}
h4 {
font-size: 1.2em;
margin: 0 0 .6em;
}
h5 {
font-size: 1em;
margin: 0 0 .5em;
}
/*====================
Image Styles
======================*/
img {
border: 0;
}
/*====================
List Styles
======================*/
dl, ol, ul {
margin: 0 0 1em;
}
dt {
font-weight: bold;
}
dd {
margin: 0 0 0 3em;
}
ul {
padding:0 0 0 3em;
}
ol {
padding: 0 0 0 3em;
}
li {
margin: 0 0 0.5em;
}
/*====================
Quote Styles
======================*/
blockquote {
margin: 1em 0;
padding-left: 20px;
}
/*====================
General Styles
======================*/
code, kbd, pre {
font-family: Courier, "Courier New", Tahoma;
}
ins, del {
font-style: italic;
}
p {
margin: 1em 0;
}
abbr, acronym, dfn {
cursor: help;
}
/*====================
Site Styles
======================*/
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old Jan 5th, 2006, 15:33
drd drd is offline
Up'n'Coming Member
Join Date: Dec 2005
Location: Hampshire, England, UK
Age: 28
Posts: 65
Thanks: 1
Thanked 0 Times in 0 Posts
Re: is it normal?

Quote:
Originally Posted by herkalees
* {margin:0; padding:0;}
I'll second that. I always add those global styles and it really helps.

The default stylesheet is a good idea too.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old Jan 5th, 2006, 16:32
Up'n'Coming Member
Join Date: Jul 2005
Location: montreal canada
Posts: 88
Thanks: 0
Thanked 0 Times in 0 Posts
Re: is it normal?

Ok, thanks a lot herkalees (and drd), I`ll be sure to add that to my css and see what happens...

Btw, what does it do when you put things into categories thusly (thusly?):
/*====================
Global Styles
======================*/

And what is a: focus?

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5  
Old Jan 5th, 2006, 19:43
herkalees's Avatar
Highly Reputable Member
Join Date: Jul 2005
Location: Massachusetts, USA
Age: 87
Posts: 576
Thanks: 0
Thanked 0 Times in 0 Posts
Re: is it normal?

Quote:
Originally Posted by ivyholly
Ok, thanks a lot herkalees (and drd), I`ll be sure to add that to my css and see what happens...

Btw, what does it do when you put things into categories thusly (thusly?):
/*====================
Global Styles
======================*/

And what is a: focus?

The "category" is nothing but a convenience visually. It helps me when I'm looking through the style sheet.

a:focus is when your tabbing through all links on a page (with keyboard), the link will change to the declared properties when you've tabbed onto it.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #6  
Old Jan 5th, 2006, 19:56
Up'n'Coming Member
Join Date: Jul 2005
Location: montreal canada
Posts: 88
Thanks: 0
Thanked 0 Times in 0 Posts
Re: is it normal?

Ok, I get it, thanks.

Your tips helped immensely, herkalees; what do you think- is this ok? Any other suggestions?

http://pyxnet.ath.cx/robin
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Tags
normal

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
Normal domain names available, obscure ones still taken CloudedVision Webforumz Cafe 11 Jun 4th, 2008 21:03
Treating an image with <div> tags like a normal image mikeym Web Page Design 2 Mar 1st, 2008 15:28
Question: How do I go from expert mode to normal mode and visa versa Flashking Flash & Multimedia Forum 1 Sep 15th, 2007 16:02
How to transform normal text into link robertboyle PHP Forum 9 Sep 13th, 2006 12:44
Automatically change query string variables back to normal kaligula1234 PHP Forum 7 Apr 13th, 2006 18:59


All times are GMT. The time now is 21:30.


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