Graphic Design Forum and Web Design Forum  

Go Back   Graphic Design Forum and Web Design Forum »Web Design Forum »CSS Forum

Notices

CSS Forum Cascading Style Sheets (CSS) and XHTML Forum


Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 13-04-2008, 01:05 PM
KimberleyCreative's Avatar
Member
 
Join Date: Aug 2007
Location: Melbourne, Australia
Posts: 69
Default Need help! My website works on Mac but not on PC

Recently I updated my website. I use a Mac, which displays it exactly how I want it to look. But, when I go to my website on a Windows PC, the layout is mashed.

I'm looking for some help from someone who uses a PC. I can e-mail the CSS and some example pages if needed. If someone could tell me how to fix, I'll apply the method to all the pages.

Thanks in advance!
__________________
Kimberley Creative – Freelance Graphic Designer
www.kimberleycreative.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!RSS Share on Facebook Share This Article & VoteForum Netvibes Page
Reply With Quote
  #2 (permalink)  
Old 13-04-2008, 01:08 PM
kip's Avatar
kip kip is offline
Experienced Member
 
Join Date: Sep 2007
Posts: 280
Default

The first thing to do is run your code through an html cleanup app, it will take all the massive gaps out and make it easier to spot what's wrong.

You've got
if gte IE 5

I wouldn't bother with IE5 not worth the hassle.
__________________
"I don't build sites that validate, I prefer to charge the client extra when they break!"
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!RSS Share on Facebook Share This Article & VoteForum Netvibes Page
Reply With Quote
  #3 (permalink)  
Old 13-04-2008, 01:18 PM
Toon's Avatar
Netvibes is an Addiction™
 
Join Date: Jan 2007
Location: Sheffield, UK
Posts: 15,724
Default

Agreed, the code needs to be cleaner to find the errors.

Get rid of all

Code:
<br />
Use margins for spaces not breaks.

The css validator is throwing up this error

Code:
23  	 #topbar  	 Value Error : height  Unknown dimension  15tpx
Seems there's an extra t somewhere.

It seems some of your commenting is effecting it as well..

Code:
Line 124, Column 28: document type does not allow element "div" here; missing one of "object", "ins", "del", "map", "button" start-tag.
<div class="articleboxouter"><!-- Here's where you can place ur content -->
What created the commenting or have you entered it yourself?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!RSS Share on Facebook Share This Article & VoteForum Netvibes Page
Reply With Quote
  #4 (permalink)  
Old 13-04-2008, 01:18 PM
zumojuice's Avatar
Experimental Member
 
Join Date: Feb 2007
Location: York
Posts: 2,282
Default

What are you designing with?
__________________
Richard Gray - Graphic Designer
http://www.zumojuice.me.uk
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!RSS Share on Facebook Share This Article & VoteForum Netvibes Page
Reply With Quote
  #5 (permalink)  
Old 13-04-2008, 01:24 PM
kip's Avatar
kip kip is offline
Experienced Member
 
Join Date: Sep 2007
Posts: 280
Default

Get rid of the random image tag at the start, this won't help if your first line of code in the body is invalid

Code:
<img /><!--[if gte IE 5]><style>#container {margin-left: -351px;}</style><![endif]--><!-- Master Container: Centered and 700px wide --><div id="container"><!-- The topmost bar --><div id="topbar"> </div>
Your first part is a closed image tag, there is no open tag I can see so it's confussing IE maybe?
__________________
"I don't build sites that validate, I prefer to charge the client extra when they break!"
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!RSS Share on Facebook Share This Article & VoteForum Netvibes Page
Reply With Quote
  #6 (permalink)  
Old 13-04-2008, 01:32 PM
Mailno's Avatar
Experienced Member
 
Join Date: Aug 2007
Posts: 137
Default

What ever program you have allowed to write your code for you has done a really bad job of it.

Code:
</div>




</div>




<br />




<br />



<br />




<br />




<br />




<br />




<br />




<br />




<br />



<br />




<br />




<br />



<br />




<br />




<br />




<br />




<br />




<br />




<br />



<br />




<br />




<br />




<br />




<br />




<br />




<br />



<br />




<br />




<br />



<br />




<br />




<br />




<br />




<br />




<br />




<br />



<br />


<br />


<br />


<br />
<br />
<br />
<br />
<br />
<br />

<br />
<br />
<br />
<br />
<br />
<br />
<br />




<br />




<br />




</span><span style="font-weight: bold;">
I don't know what that is about but if you were on a PC I'd say that's a MS fontpage style string of coding.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!RSS Share on Facebook Share This Article & VoteForum Netvibes Page
Reply With Quote
  #7 (permalink)  
Old 13-04-2008, 01:32 PM
Toon's Avatar
Netvibes is an Addiction™
 
Join Date: Jan 2007
Location: Sheffield, UK
Posts: 15,724
Default

Code:
<span style="font-weight: normal;">My name is Kimberley, I
am the
owner of Kimberley Creative. I live in Melbourne Australia, but I offer
Graphic Design services worldwide. I offer a wide range of affordable
freelance
Graphic Design services and printing with VistaPrint.</span><br style="font-weight: normal;" />
All the font styles can go in your CSS file.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!RSS Share on Facebook Share This Article & VoteForum Netvibes Page
Reply With Quote
  #8 (permalink)  
Old 13-04-2008, 01:37 PM
kip's Avatar
kip kip is offline
Experienced Member
 
Join Date: Sep 2007
Posts: 280
Default

Your css files seems to be adding 50% left padding to everything within your body

Code:
body {	font-size: 11px;	font-family: Verdana, Arial, SunSans-Regular, Sans-Serif;	margin: 0px;	padding-left: 50%;	background: #aac5d5 url(images/bg2.gif) center repeat-y;	position: absolute;}
__________________
"I don't build sites that validate, I prefer to charge the client extra when they break!"
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!RSS Share on Facebook Share This Article & VoteForum Netvibes Page
Reply With Quote
  #9 (permalink)  
Old 13-04-2008, 05:00 PM
zumojuice's Avatar
Experimental Member
 
Join Date: Feb 2007
Location: York
Posts: 2,282
Default

mmmm maybe I know more about CSS than I thought..
__________________
Richard Gray - Graphic Designer
http://www.zumojuice.me.uk
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!RSS Share on Facebook Share This Article & VoteForum Netvibes Page
Reply With Quote
  #10 (permalink)  
Old 14-04-2008, 03:01 AM
KimberleyCreative's Avatar
Member
 
Join Date: Aug 2007
Location: Melbourne, Australia
Posts: 69
Default

Thanks for the help guys.

My website was designed with a template, as I'm only a basic user of CSS and html. All the comments in the html were already in the template. I use Text Edit and a free web design software called Nvu. I like it as i can view my website while I am editing it.

I know I really should be using something like Dreamweaver, and get a professional to design my website. It's a budget thing.
__________________
Kimberley Creative – Freelance Graphic Designer
www.kimberleycreative.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!RSS Share on Facebook Share This Article & VoteForum Netvibes Page
Reply With Quote
Reply


Thread Tools
Display Modes

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
EIII - Some of my works EIII Graphic Design Showcase 14 14-05-2008 12:10 PM
Photoshop and Coreldraw geeks looking for works PluT0 Design Forum Employment 0 14-10-2007 08:11 AM
Minimal Works Toon CSS Forum 1 12-07-2007 04:11 PM
My 3D and grahics works vijayrajesh Graphic Design Showcase 0 12-05-2007 01:38 AM
Logo Works Toon Graphic Design Forum 3 07-03-2007 04:17 PM


All times are GMT. The time now is 05:09 AM.



Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC5