Website Help

Soldato
Joined
15 Jan 2005
Posts
2,717
Location
London
http://www.amarininn.com/new/ocuk.html

Now the pictures are subject to change, and I've not yet managed to figure out the jquery.innerfade thing yet, so it's got a way to go, but if you look at it in IE, the banner at the top is partially obscured. In FF and Chrome it looks fine. Does anyone know how to stop IE getting confused over this?
 
Last edited:
Hello, my previous thread has completely disappeared, does anyone know why?
Probably due to you putting a link to your site, which has been reported as an 'Attack' site. Your site tries to install a trojan on the visitor's system when they visit it.

You really, really need to look into this.
 
Firstly, examine all the HTML files hosted on your web server for anything that shouldn't be there. And by that I mean look at the source code for links or javascripts that you don't recognise.

Better still, if you *know* your local files are clean, wipe everything on your web server and just re-upload those.

Actually, no - first thing to do: look in any user/customer support forums of your web hosting provider, to see if others have had their sites compromised. There will hopefully be a solution there.
 
Its been submitted to Google for review. The warning should be lifted soon then.

Right it seems to be working. Now just how to move the damned javascript box in IE!
 
Last edited:
I'd just like people to have a look at www.amarininn.com and tell me if it's bringing up malware warnings for them. Google have cleared it but if a few people's personal software could confirm that'd be great.
 
The websense filter at our work blocks your site:

Security risk blocked for your protection

Reason:

This Websense category is filtered: Malicious Web Sites. Sites in this category may pose a security threat to network resources or private information, and are blocked by your organization.
 
Hello everyone! Hopefully today we should be malware free - goodbye softwarechavdong.au

Here is where I'm at so far:

http://www.amarininn.com/new/index.html

If you load the page in IE you see that the banner at the top of the page is partially hidden. In CHrome and FF it's fine though. Can anyone help fix that?
 
Hello everyone! Hopefully today we should be malware free - goodbye softwarechavdong.au

Here is where I'm at so far:

http://www.amarininn.com/new/index.html

If you load the page in IE you see that the banner at the top of the page is partially hidden. In CHrome and FF it's fine though. Can anyone help fix that?

You'll be glad to know you are now clear on the Websense list. It seems to only break in IE8 Compatability mode for me, but is fine in normal mode, it also looks fine in Opera.
 
Your html is really messy and is broken at parts, causing problems. Look at this:

Code:
</head> <p><p>
</td>
<body> 
<P align=left><div class='header' height="145"><center><img src="images/banner.jpg" height="145" title="Amarin Inn Khao San Hotel" alt="Amarin Inn - Quality & Style"> </center></div><style type="text/css">div.header {position: absolute;top: 0;left: 50%;margin-left: -400px;width: 800px;height: 400px;}</style></P><p><br>
<p>br><p><p></div><p>

<div id="wrapper">

Needs to look like this:

Code:
<style type="text/css">div.header {position: absolute;top: 0;left: 50%;margin-left: -400px;width: 800px;height: 400px;}</style>
</head>
<body> 
<div class="header">
<img src="images/banner.jpg" height="145" title="Amarin Inn Khao San Hotel" alt="Amarin Inn - Quality & Style"> 
</div>

<div id="wrapper">
You should only put style tags in the head section, and you can define all your styles in one tag, or better define them all in the style.css that you are using anyway!

I removed all those empty paragraphs and random br's. You also were using the center tag which you shouldnt be using anymore.

Basically go through your site and fix the incorrect html. Once that is fixed, then adjust the css so that it looks right. Then your site will work.
 
The thing is when I remove the "empty" brs and ps it displays itself horribly. I'll try to sort out the center tag thing too.

Can someone just look at http://www.amarininn.com/new/contac.html

and tell me how to stop the things from sitting underneath the java fader? SOLVED! Is it looking ok? I'll sort the images as you read this...
 
Last edited:
Back
Top Bottom