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;








1















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:



enter image description here



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.










share|improve this question






















  • 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

















1















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:



enter image description here



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.










share|improve this question






















  • 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













1












1








1








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:



enter image description here



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.










share|improve this question














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:



enter image description here



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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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

















  • 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












2 Answers
2






active

oldest

votes


















2














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&ocirc;&zcaron;eme





share|improve this answer


















  • 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














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.






share|improve this answer

























    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
    );



    );













    draft saved

    draft discarded


















    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









    2














    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&ocirc;&zcaron;eme





    share|improve this answer


















    • 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















    2














    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&ocirc;&zcaron;eme





    share|improve this answer


















    • 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













    2












    2








    2







    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&ocirc;&zcaron;eme





    share|improve this answer













    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&ocirc;&zcaron;eme






    share|improve this answer












    share|improve this answer



    share|improve this answer










    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












    • 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













    1














    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.






    share|improve this answer



























      1














      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.






      share|improve this answer

























        1












        1








        1







        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.






        share|improve this answer













        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.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 26 at 20:00









        LubWnLubWn

        427 bronze badges




        427 bronze badges



























            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

            SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

            은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현