Reputation: 21
I know this question has been asked but I haven't found the answer to my question.
My website, http://www.rastorant.com isn't displaying in Opera and Firefox, the css and some of the html is just not there for some reason. I have validated the site multiple times and it works perfectly in Safari, Chrome and IE. The site's in Bulgarian but it's very simple.
There are six cards that link to the rest of the site, they go in this order:
Gallery, Menu, Contact info, Birthdays, Events, New Years.
The html is very short if you look at the source and the css is the same across all pages.
Upvotes: 0
Views: 188
Reputation: 97672
You use \
in your urls, which causes 404s in firefox. Use /
instead.
e.g use
<link href="stylesheets/style.css" rel="stylesheet" style="text/css">
instead of
<link href="stylesheets\style.css" rel="stylesheet" style="text/css">
Upvotes: 6