Broken / Misaligned accents on some textsHow to add some non-standard font to a website?How to force the browser to reload cached CSS/JS files?Vertically align text next to an image?How do I give text or an image a transparent background using CSS?How to disable text selection highlighting?How do I vertically align text in a div?How do I vertically center text with CSS?Webfont Smoothing and Antialiasing in Firefox and OperaLatest Opera browser renders jagged edges on fontLato font rendering Safari
Pass USB 3.0 connection through D-SUB connector
Hats Question: Confusion Over Its Formulation
What is the metal bit in the front of this propeller spinner?
Create Circle with Inner Radius
Acoustic guitar chords' positions vs those of a Bass guitar
Considerations when providing money to only one child out of two
Book in which the "mountain" in the distance was a hole in the flat world
Host telling me to cancel my booking in exchange for a discount?
Adding gears to my grandson's 12" bike
My guitar strings go loose when I tighten them?
Strange LED behavior
Why did modems have speakers?
Can I make Ubuntu 18.04 switch between multiple windows of the program by just clicking the icon?
Does switching on an old games console without a cartridge damage it?
How can I show that the speed of light in vacuum is the same in all reference frames?
1025th term of the given sequence.
How to handle not being able to attend as often as I'd like
Calculating Fibonacci sequence in several different ways
How did pilots avoid thunderstorms and related weather before “reliable” airborne weather radar was introduced on airliners?
Why Lie algebras if what we care about in physics are groups?
Why are the phonemes of Tutankhamun's throne name transliterated out of order?
Is it OK to accept a job opportunity while planning on not taking it?
Is there an English word to describe when a sound "protrudes"?
Magic is the twist
Broken / Misaligned accents on some texts
How to add some non-standard font to a website?How to force the browser to reload cached CSS/JS files?Vertically align text next to an image?How do I give text or an image a transparent background using CSS?How to disable text selection highlighting?How do I vertically align text in a div?How do I vertically center text with CSS?Webfont Smoothing and Antialiasing in Firefox and OperaLatest Opera browser renders jagged edges on fontLato font rendering Safari
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have found out, that some of the fonts on my website does not render properly on some browsers. Accents are misaligned, slightly off it's normal position.
It looks like it works nicely in Chrome / Opera and is broken in Edge / Firefox.
Here is the image:
Website is running on Drupal 7 and fonts are from fonts.google.com with @include in CSS. I have no clue how to solve such a problem and tried to google but no-one seem to be having the same problems.
Also I found out that when I manually re-write the texts in inspector it magically works again.
html css fonts
add a comment |
I have found out, that some of the fonts on my website does not render properly on some browsers. Accents are misaligned, slightly off it's normal position.
It looks like it works nicely in Chrome / Opera and is broken in Edge / Firefox.
Here is the image:
Website is running on Drupal 7 and fonts are from fonts.google.com with @include in CSS. I have no clue how to solve such a problem and tried to google but no-one seem to be having the same problems.
Also I found out that when I manually re-write the texts in inspector it magically works again.
html css fonts
can you please show your some code or else you can provide a link to your project site if available. it will help to debug what is broken.
– Gaurav Bhardwaj
Mar 26 at 13:53
Sure no problem. Actually site is live at link
– LubWn
Mar 26 at 13:59
add a comment |
I have found out, that some of the fonts on my website does not render properly on some browsers. Accents are misaligned, slightly off it's normal position.
It looks like it works nicely in Chrome / Opera and is broken in Edge / Firefox.
Here is the image:
Website is running on Drupal 7 and fonts are from fonts.google.com with @include in CSS. I have no clue how to solve such a problem and tried to google but no-one seem to be having the same problems.
Also I found out that when I manually re-write the texts in inspector it magically works again.
html css fonts
I have found out, that some of the fonts on my website does not render properly on some browsers. Accents are misaligned, slightly off it's normal position.
It looks like it works nicely in Chrome / Opera and is broken in Edge / Firefox.
Here is the image:
Website is running on Drupal 7 and fonts are from fonts.google.com with @include in CSS. I have no clue how to solve such a problem and tried to google but no-one seem to be having the same problems.
Also I found out that when I manually re-write the texts in inspector it magically works again.
html css fonts
html css fonts
asked Mar 26 at 13:30
LubWnLubWn
427 bronze badges
427 bronze badges
can you please show your some code or else you can provide a link to your project site if available. it will help to debug what is broken.
– Gaurav Bhardwaj
Mar 26 at 13:53
Sure no problem. Actually site is live at link
– LubWn
Mar 26 at 13:59
add a comment |
can you please show your some code or else you can provide a link to your project site if available. it will help to debug what is broken.
– Gaurav Bhardwaj
Mar 26 at 13:53
Sure no problem. Actually site is live at link
– LubWn
Mar 26 at 13:59
can you please show your some code or else you can provide a link to your project site if available. it will help to debug what is broken.
– Gaurav Bhardwaj
Mar 26 at 13:53
can you please show your some code or else you can provide a link to your project site if available. it will help to debug what is broken.
– Gaurav Bhardwaj
Mar 26 at 13:53
Sure no problem. Actually site is live at link
– LubWn
Mar 26 at 13:59
Sure no problem. Actually site is live at link
– LubWn
Mar 26 at 13:59
add a comment |
2 Answers
2
active
oldest
votes
If you're typing them literally...
Pomôžeme
Then you need to use the correct character set
<meta charset="UTF-8">
You could also try using HTML entities instead to get consistent letters:
Pomôžeme
1
Thanks for a reply. Actually there is charset utf-8 already set on website. I can see correct letters in code but they got rendered badly. Since website is editable by client I would rather not work with exact HTML entities. But maybe I can write some easy javascript to actually transfer all the characters to HTML entities after load and that might work.
– LubWn
Mar 26 at 14:06
When I take off the font-family 'FaricyNew' the alignment issues go away on FireFox. You may want to try switching to a different font.
– Painguin
Mar 26 at 14:19
1
I wrote a comment below. So actually you were right of writing HTML entities. That would solve the problem also.
– LubWn
Mar 26 at 20:01
add a comment |
So after hours of wondering what is going wrong I accidentally found out a solution. Our designer gave us design in Figma (online tool for making website design) and texts copied from this program were just wrong. So they looked the same but actually it was in different encoding or I do not know. Solution was to re-write all the texts by hand. Never seen such an issue.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55358411%2fbroken-misaligned-accents-on-some-texts%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
If you're typing them literally...
Pomôžeme
Then you need to use the correct character set
<meta charset="UTF-8">
You could also try using HTML entities instead to get consistent letters:
Pomôžeme
1
Thanks for a reply. Actually there is charset utf-8 already set on website. I can see correct letters in code but they got rendered badly. Since website is editable by client I would rather not work with exact HTML entities. But maybe I can write some easy javascript to actually transfer all the characters to HTML entities after load and that might work.
– LubWn
Mar 26 at 14:06
When I take off the font-family 'FaricyNew' the alignment issues go away on FireFox. You may want to try switching to a different font.
– Painguin
Mar 26 at 14:19
1
I wrote a comment below. So actually you were right of writing HTML entities. That would solve the problem also.
– LubWn
Mar 26 at 20:01
add a comment |
If you're typing them literally...
Pomôžeme
Then you need to use the correct character set
<meta charset="UTF-8">
You could also try using HTML entities instead to get consistent letters:
Pomôžeme
1
Thanks for a reply. Actually there is charset utf-8 already set on website. I can see correct letters in code but they got rendered badly. Since website is editable by client I would rather not work with exact HTML entities. But maybe I can write some easy javascript to actually transfer all the characters to HTML entities after load and that might work.
– LubWn
Mar 26 at 14:06
When I take off the font-family 'FaricyNew' the alignment issues go away on FireFox. You may want to try switching to a different font.
– Painguin
Mar 26 at 14:19
1
I wrote a comment below. So actually you were right of writing HTML entities. That would solve the problem also.
– LubWn
Mar 26 at 20:01
add a comment |
If you're typing them literally...
Pomôžeme
Then you need to use the correct character set
<meta charset="UTF-8">
You could also try using HTML entities instead to get consistent letters:
Pomôžeme
If you're typing them literally...
Pomôžeme
Then you need to use the correct character set
<meta charset="UTF-8">
You could also try using HTML entities instead to get consistent letters:
Pomôžeme
answered Mar 26 at 14:00
PainguinPainguin
3532 silver badges13 bronze badges
3532 silver badges13 bronze badges
1
Thanks for a reply. Actually there is charset utf-8 already set on website. I can see correct letters in code but they got rendered badly. Since website is editable by client I would rather not work with exact HTML entities. But maybe I can write some easy javascript to actually transfer all the characters to HTML entities after load and that might work.
– LubWn
Mar 26 at 14:06
When I take off the font-family 'FaricyNew' the alignment issues go away on FireFox. You may want to try switching to a different font.
– Painguin
Mar 26 at 14:19
1
I wrote a comment below. So actually you were right of writing HTML entities. That would solve the problem also.
– LubWn
Mar 26 at 20:01
add a comment |
1
Thanks for a reply. Actually there is charset utf-8 already set on website. I can see correct letters in code but they got rendered badly. Since website is editable by client I would rather not work with exact HTML entities. But maybe I can write some easy javascript to actually transfer all the characters to HTML entities after load and that might work.
– LubWn
Mar 26 at 14:06
When I take off the font-family 'FaricyNew' the alignment issues go away on FireFox. You may want to try switching to a different font.
– Painguin
Mar 26 at 14:19
1
I wrote a comment below. So actually you were right of writing HTML entities. That would solve the problem also.
– LubWn
Mar 26 at 20:01
1
1
Thanks for a reply. Actually there is charset utf-8 already set on website. I can see correct letters in code but they got rendered badly. Since website is editable by client I would rather not work with exact HTML entities. But maybe I can write some easy javascript to actually transfer all the characters to HTML entities after load and that might work.
– LubWn
Mar 26 at 14:06
Thanks for a reply. Actually there is charset utf-8 already set on website. I can see correct letters in code but they got rendered badly. Since website is editable by client I would rather not work with exact HTML entities. But maybe I can write some easy javascript to actually transfer all the characters to HTML entities after load and that might work.
– LubWn
Mar 26 at 14:06
When I take off the font-family 'FaricyNew' the alignment issues go away on FireFox. You may want to try switching to a different font.
– Painguin
Mar 26 at 14:19
When I take off the font-family 'FaricyNew' the alignment issues go away on FireFox. You may want to try switching to a different font.
– Painguin
Mar 26 at 14:19
1
1
I wrote a comment below. So actually you were right of writing HTML entities. That would solve the problem also.
– LubWn
Mar 26 at 20:01
I wrote a comment below. So actually you were right of writing HTML entities. That would solve the problem also.
– LubWn
Mar 26 at 20:01
add a comment |
So after hours of wondering what is going wrong I accidentally found out a solution. Our designer gave us design in Figma (online tool for making website design) and texts copied from this program were just wrong. So they looked the same but actually it was in different encoding or I do not know. Solution was to re-write all the texts by hand. Never seen such an issue.
add a comment |
So after hours of wondering what is going wrong I accidentally found out a solution. Our designer gave us design in Figma (online tool for making website design) and texts copied from this program were just wrong. So they looked the same but actually it was in different encoding or I do not know. Solution was to re-write all the texts by hand. Never seen such an issue.
add a comment |
So after hours of wondering what is going wrong I accidentally found out a solution. Our designer gave us design in Figma (online tool for making website design) and texts copied from this program were just wrong. So they looked the same but actually it was in different encoding or I do not know. Solution was to re-write all the texts by hand. Never seen such an issue.
So after hours of wondering what is going wrong I accidentally found out a solution. Our designer gave us design in Figma (online tool for making website design) and texts copied from this program were just wrong. So they looked the same but actually it was in different encoding or I do not know. Solution was to re-write all the texts by hand. Never seen such an issue.
answered Mar 26 at 20:00
LubWnLubWn
427 bronze badges
427 bronze badges
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55358411%2fbroken-misaligned-accents-on-some-texts%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
can you please show your some code or else you can provide a link to your project site if available. it will help to debug what is broken.
– Gaurav Bhardwaj
Mar 26 at 13:53
Sure no problem. Actually site is live at link
– LubWn
Mar 26 at 13:59