+ Reply to Thread
Page 1 of 2
1 2 LastLast
Results 1 to 10 of 19

Thread: Need help! My website works on Mac but not on PC

  1. #1
    Member KimberleyCreative's Avatar
    Join Date
    Aug 2007
    Location
    Melbourne, Australia
    Posts
    76

    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.comhttp://www.etsy.com/shop.php?user_id=5825866


  2. #2
    kip
    kip is offline
    Jiggle With Them! kip's Avatar
    Join Date
    Sep 2007
    Location
    Goldfish Bowl
    Posts
    490
    Blog Entries
    1
    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!"

  3. #3
    Netvibes is an Addiction™ Toon's Avatar
    Join Date
    Jan 2007
    Location
    Sheffield, UK
    Posts
    23,639
    Blog Entries
    12
    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?

  4. #4
    100% Freshly Squeezed™ zumojuice's Avatar
    Join Date
    Feb 2007
    Location
    York
    Posts
    4,722
    What are you designing with?
    Richard Gray
    zumojuice | Facebook | Twitter

  5. #5
    kip
    kip is offline
    Jiggle With Them! kip's Avatar
    Join Date
    Sep 2007
    Location
    Goldfish Bowl
    Posts
    490
    Blog Entries
    1
    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!"

  6. #6
    Established Member Mailno's Avatar
    Join Date
    Aug 2007
    Posts
    316
    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.

  7. #7
    Netvibes is an Addiction™ Toon's Avatar
    Join Date
    Jan 2007
    Location
    Sheffield, UK
    Posts
    23,639
    Blog Entries
    12
    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.

  8. #8
    kip
    kip is offline
    Jiggle With Them! kip's Avatar
    Join Date
    Sep 2007
    Location
    Goldfish Bowl
    Posts
    490
    Blog Entries
    1
    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!"

  9. #9
    100% Freshly Squeezed™ zumojuice's Avatar
    Join Date
    Feb 2007
    Location
    York
    Posts
    4,722
    mmmm maybe I know more about CSS than I thought..
    Richard Gray
    zumojuice | Facebook | Twitter

  10. #10
    Member KimberleyCreative's Avatar
    Join Date
    Aug 2007
    Location
    Melbourne, Australia
    Posts
    76
    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.comhttp://www.etsy.com/shop.php?user_id=5825866

+ Reply to Thread
Page 1 of 2
1 2 LastLast

Similar Threads

  1. EIII - Some of my works
    By EIII in forum Graphic Design Showcase
    Replies: 14
    Last Post: 14-05-2008, 12:10 PM
  2. Photoshop and Coreldraw geeks looking for works
    By PluT0 in forum Design Forum Employment
    Replies: 0
    Last Post: 14-10-2007, 08:11 AM
  3. Minimal Works
    By Toon in forum CSS Forum
    Replies: 1
    Last Post: 12-07-2007, 04:11 PM
  4. My 3D and grahics works
    By vijayrajesh in forum Graphic Design Showcase
    Replies: 0
    Last Post: 12-05-2007, 01:38 AM
  5. Logo Works
    By Toon in forum Graphic Design Forum
    Replies: 3
    Last Post: 07-03-2007, 05:17 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts


The Graphics Forum Web Design Stuff Free Decent Downloads Free Quality Wallpapers Graphics Forum Free Vista Themes
The Top The Best Images Tech Talk 247 Logo Design - $149 Affordable Stock Vector Illustrations Creativecurio - Design Blog Graphic Design Advertising

Check the forum often for the latest design announcements. Everything from graphic design and web design, to films and music. Estetica is a great place for people to get together and help each other out.



Web Hosting - UK Web Hosting services for business or personal website hosting needs.

Dedicated Servers - A full range of Managed Dedicated Server solutions suitable for all your requirements.

Graphic Design Blog | Web Design Forum | Graphic Design and Print Forum | Graphic Design Links | Advertise On This Site

Web Design UK | Vision.To Design | Leaflet Printing | Estetica Design Forum's Privacy Policy

Flyer Printing | Photography Blog | Design Forum Links | Logo Design | Graphic Design Social Network | Logo Design

Graphic Design Tutorials | Logo Designer | UK Logo Design Studio | Land for sale | Vector Art Blog | Leaflet Printing

Free Web Hosting | Custom Logo Design - $149 Only | Affordable Print Design Templates | Small Business Logo Design | Company Logo Design

Logo Design Service | Logo Design Firm | Logo Design Reseller | Custom Logo Design | Letterhead Printing | Flyer Printing | Business Card Printing

Printing | Leaflet Printing | Online Backup | T-Shirt Printing | Personalised Mugs | Canvas Printing | Free Web Hosting Comparison Site