• Welcome to TechPowerUp Forums, Guest! Please check out our forum guidelines for info related to our community.

Site compatibility problems

sheps999

New Member
Joined
Feb 27, 2007
Messages
172 (0.03/day)
Location
UK. Where it's always lovely and su-...no, never m
Processor AMD Athlon 64 X2 4400+ 2.2GHz
Motherboard Gigabyte such-and-such
Cooling FANS
Memory 2GB mixed
Video Card(s) Nvidia FX5200
Storage 80GB Maxtor, 80GB WDC, 250GB Seagate, 160GB WDC
Display(s) Dell
Case Faux Alienware lighty-uppy case
Audio Device(s) Asus Xonar DG
Power Supply Corsair 400w
Software Windows XP Pro SP3
Benchmark Scores LOTS AND LOTS AND LOTS AND oh god why
I've been having compatibility problems with a website that I recently put online.

The site is: http://omegacoreambient.webs.com

So far, it only works with Firefox and any Firefox derivatives. It doesn't work with any version of IE, Safari, Opera or Chrome. I haven't a clue why this is.

It uses primarily CSS, div tables, and an image map for the main site links at the top, and was designed and built in Adobe Dreamweaver CS3.

Does anyone have any ideas as to why this problem exists? Any advice is much appreciated :toast:


EDIT: Fixed it. Turns out it was the host (Freewebs) blocking it for some reason. Have now switch to a different host.
 
Last edited:
Joined
Jan 15, 2009
Messages
442 (0.07/day)
Location
Australia
System Name Krogoth
Processor AMD Ryzen 5 5600G @stock
Motherboard Gigabyte B550 AORUS ELITE AX V2
Cooling Stock CPU cooler + 2x Intake 120mm @ 8v + 2x outtake 120mm @8v
Memory G.Skill Ripjaws V 32GB (2x16GB) PC4-28800 DDR4
Video Card(s) MSI Radeon R9 290 Gaming 4GB GDDR5
Storage 1x 4tb WD HDD, 1x1Tb Intel m.2 SSD
Display(s) 2x 27" IPS on swing arms. @UHD
Case Antec Solo II
Audio Device(s) HyoperX Cloud 2 Wireless Headphones
Power Supply I forgot.
Mouse Logitech G302
Keyboard Lenovo legion K500 RGB
Software Windows 11 64bit
For starters Dreamweaver has always had a reputation for adding lots of useless messy code.

The best way to make sure your website works on all browsers is too code it to W3C specifications. For this I recommend you start using notepad and not Dreamweaver.
Try Notepad++.

Use these markup checkers provided by W3C and gradually start recoding the page to have as few errors as possible. After that it should render nearly perfectly in all major browsers but IE.
XHTML validator
CSS validator

To make it render in IE while Valid, you will need to look up some CSS hacks. there are alot of resources for them on the internet.
 

redactuk

New Member
Joined
Aug 9, 2009
Messages
1 (0.00/day)
For starters Dreamweaver has always had a reputation for adding lots of useless messy code.

Dreamweaver does not add any useless code and does not have that reputation!! I think you may mean Frontpage ;)

I just happened to reach these forums by accident and saw this post. That statement is so completely untrue that I had to register on these forums specifically to respond for the benefit of other people reading that also. Dreamweaver default pages are completely customisable by the user and contain as much or a little additional code as you like. My basic default page is:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
</body>
</html>

I defy anyone to tell me that as a starting point there is anything useless in there!

Best regards
 
Top