Web image - do you see it?

loubycee

Free Member
Dec 27, 2007
2,836
406
Kent, UK
Hiya

Right, another issue with this one and I wondered if anyone has a little sec to have a look for me please?

solutionfacilities.co.uk - basically, I've added a horizontal image just before the footer but my client says their computer doesn't see it but the ipad does. My laptops don't have any issues with it and they assure me they've cleared the history :|

Can anyone repeat the error at all?

Many, many, thanks
 

Jeff FV

Free Member
Jan 10, 2009
3,891
1,861
Somerset
This is a screen grab of what I can see (towards the bottom of the page):

picture.php


HTH

J
 
  • Like
Reactions: loubycee
Upvote 0
M

MikeInTheMiddleAgain

If its "images/offices_hotels_golfcourses_kitchens_showrooms_scho ols_villagehalls.png" I can see it in Chrome on Windows Vista. Don't forget to add some alt text in there for people using screen readers etc

Have to say html wise - all those nested divs in the content section for the rounded corners probably aren't doing your SEO any favours - I'd just use CSS3 rounded corners and let older browsers degrade to square corners ...
 
Upvote 0

35173

Free Member
Jan 16, 2013
21
2
Try it on different browsers eg: IE, Opera, Safari, FireFox, Chrome, etc to see if any cross-browser support issues. It's a strange problem to have, images are usually pretty straight forward. Could it be that they were using an old cached version of the css file if the image is controlled from the css file?
 
Upvote 0
*cough* of course, you shouldn't have width in your html (content layer) anyway as it is supposed to be in your CSS (presentation layer)

To be fair, when I and I am sure others, looked at the source I decided not to comment on standards as that height/width attributes are only a tiny portion of whats wrong with it and "you have done it all wrong" isn't actually that helpful. :)

Sorry OP, not being mean.
 
Upvote 0
T

The Developer

Just to re-iterate, people are not criticising your work for fun, but because scripting html/css in a standards compliant way is more browser compatible. Which will significantly reduce the chance of problems like this.

An easy way to improve would be to use a service like this: validator.w3.org which will point you towards code that does not meet validation.

Not only will it point out when you are using out-dated methods, but it will also catch errors that might exist (but that modern browsers are fixing on the screen).
 
Upvote 0
Just to re-iterate, people are not criticising your work for fun, but because scripting html/css in a standards compliant way is more browser compatible. Which will significantly reduce the chance of problems like this.

An easy way to improve would be to use a service like this: validator.w3.org which will point you towards code that does not meet validation.

Not only will it point out when you are using out-dated methods, but it will also catch errors that might exist (but that modern browsers are fixing on the screen).

Good advice and I'd like to second that the comments on the code quality aren't being mean - although it could feel that way.

I'd like to add that there are a load of problems with the code that will validate as standards compliant but are bad practice.

Take the wall of div's and the way the css has been approached, it's messy and shows a lack of understanding about how pages are marked up.
 
Upvote 0

Latest Articles