Font-Awesome CSS stylesheet appearing in chrome only [closed] - html

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 4 years ago.
Improve this question
I am doing a freelancing website and i am using css html js and php
The problem is when i refer to my font awesome css sheet in my local folders it opens great in google chrome
But when i open it in edge or firefox the icons of do not appear (facebook icon,instagram...etc)
this is the picture of my ref

I had the same issue and it's related to the cross-domain issue that Mozilla doesn't allow such requests.
Read more here: http://code-epicenter.com/font-awesome-is-not-showingworking-in-mozilla-firefox/
P.S: I don't have enough reputation points to make a comment, hence writing it in the answer. Thank you for not down-voting because of that.

Related

Why wont my website show up? [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
I have create my website and have a domain but when I type the domain name into the browser I get some weird page. I am using 000webhosting and just uploaded the files and they said they were good. I am not sure what is the problem but here is the link
hudsonreamer.com
Hopefully I can get some help
Thanks a lot for the help
Check your DNS/Nameserver records to link files to domain.
Not really covered here however you may want to watch a youtube tutorial on setting up a hosted website.

Hyperlinks on my website are not working [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
Just tried to make a little website from scratch (i'm a beginner) but weirdly my hyperlinks aren't working at the bottom of the page .. What am I doing wrong?
Thank you.
Here is my code (couldn't paste it in here correctly sorry) : http://www.mediafire.com/view/bl7104l8q8plbvm/shutterbug.txt
Your link tags are:
Facebook
A link with href="#" redirects to the current URL. Try changing it to:
Facebook

Responsive css is not used when frame is used [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
I have a website which is working as expected when resizing my window (responsive css is used) : http://carthera.eu/
But when I'm going on the same website with this url http://carthera.com/ responsive css is not taken into account.
I have seen that this url is using a frame to display http://carthera.eu.
Do you have any idea why I have this issue ?
The solution was to do a 301 redirect to the principal domain name. I had no other solution having no control over the frame.

"Awesome Font" Not Displaying [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 years ago.
Improve this question
I have recently moved my website from the ROOT folder to a SUB folder. Since I have done this my "Awesome Font" is not displaying in my browsers.
The missed font is showing the errors:
My Header (on the left, missing currencies.
My Footer (copyright text not showing, resulting in the payment methods dropping bellow the footer).
My website can be found here: ----
You have a path problem, most likely.
You probably changed the structure of directories, if it used to work before this change.
Try loading Awesome-Font from CDN server and see if it works, if so you have to change your path to the font awesome directory.

Why does the HTML site flash when clicking the 'Home' button on my website? [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 years ago.
Improve this question
When I click the 'Home' button on my site (beta.tradeacademy.org/dashboard), it shows the links and search box without the css for a split second - as shown in the attached image. Can anyone explain why this happens?
Thanks in advance.
That's called FOUC.
Your CSS files are being fetched much later. Please refer the waterfall.
Try to fetch the CSS in the html head.
The CSS file may not have been loaded prior to the HTML, and therefore not rendered.
Changing the load order would mitigate this issue.
See css loads late, so html looks weird for a second for possible solutions to this.