Home>Support>Influence / No longer fat or color text after changing the font

Influence / No longer fat or color text after changing the font

Hi
I was customizing fonts and titles body when I realized that I no longer had fat or color in the texts that I had already created. I tried to put the original font , it doesn’t change anything . Now I have gray instead of red, and also gray instead of fat … What should I do? Thank you in advance.

URL: http://www.mnms.ovh/hebergement/

This is our free support forum. Replies can take several days. If you need fast email support, please purchase a SiteOrigin Premium license.

  1. 9 years, 11 months ago Andrew Misplon
    Hi, I Work Here

    Hi Mylène

    Which fonts do you currently have activated in the Customizer? It looks like Gloria Hallelujah for headings and Open Sans for your body text.

  2. 9 years, 11 months ago Mylène Eclache

    yes it’s for open sans… why couldn’t put red or fat on words???

  3. 9 years, 11 months ago Andrew Misplon
    Hi, I Work Here

    Sorry I’m not following you there. Influence only currently has the option to change font colors in the sidebar and footer. The only page option is to change the background color.

    Which text do you want to change to red?
    What do you mean by ‘fat on words’?

  4. 9 years, 11 months ago Mylène Eclache

    Sorry for ma bad english…
    For example in this page : http://www.mnms.ovh/hebergement/2/
    in “Dormir sur place” : Le Prieuré dispose de 2 dortoirs de 6 et 20 places environ : attention places limitées !
    “dortoirs” is in fat (how do i say that… with : dortoirs) “attention places limitées” is in red. In my wordpress interface, there’s no problem, it appear good, but no in the page….

  5. 9 years, 11 months ago Mylène Eclache

    fat : when you put

  6. 9 years, 11 months ago Mylène Eclache

    <b and </b

  7. 9 years, 11 months ago Andrew Misplon
    Hi, I Work Here

    Ahh ok. The english word is bold.

    This is a small problem with our Customizer at the moment. Please try this…add the following to a Custom CSS plugin like Simple Custom CSS. Or if you have Jetpack installed then use the Jetpack Custom CSS module.

    @import url(http://fonts.googleapis.com/css?family=Open+Sans:700);
    

    Let me know how this goes and if there are other challenges you’d like to discuss.

    Google Translated:

    Ahh ok. Le mot anglais est en gras.

    C’est un petit problème avec notre Customizer pour le moment. S’il vous plaît essayer … ajoutez la ligne suivante à un plugin CSS personnalisé comme simple CSS personnalisé. Ou si vous avez installé Jetpack alors utiliser le module Jetpack CSS personnalisé.

    Permettez-moi de savoir comment cela va et si il ya d’autres défis vous souhaitez discuter.

  8. 9 years, 11 months ago Mylène Eclache

    bold … damned I knew it !!!!
    I’ll try right know

  9. 9 years, 11 months ago Andrew Misplon
    Hi, I Work Here

    For sure!

    The problem we have with our Customizer right now is that when you select Open Sans 400 for the body there is no import for 700 weight, which is bold. That line added to Custom CSS will resolve the challenge.

  10. 9 years, 11 months ago Mylène Eclache

    I tried to put the code in the custom CSS module, apparently it doesn’t work, but i found something.

    The “B” bold icon in WordPress doesn’t write html tag “b” , it write “strong”. I’ve tried to replace “strong” with “b”, and tadam, it’s working ! But it’s a little bit boring, because I never use the HTML mode when I write a post. I write it in visual mode, so it means that in each post, I’ve to write it and after, read the html text, and replace “strong” tag with “b” tag… argh !
    I think it would be the same for the color :

    Le Prieuré dispose de 2 <strong>dortoirs</strong> de 6 et 20 places environ :<span style="color: #ff0000;"> <strong>attention places limitées</strong> </span>!
  11. 9 years, 11 months ago Andrew Misplon
    Hi, I Work Here

    Using the b tag seems to work on on my side when I test it on your site.

  12. 9 years, 11 months ago Andrew Misplon
    Hi, I Work Here

    You could also try the following under Custom CSS:

    @import url(http://fonts.googleapis.com/css?family=Open+Sans:700);
    	
    b, strong {
    font-weight: 700;
    }
    
  13. 9 years, 11 months ago Mylène Eclache

    no change… snif !

  14. 9 years, 11 months ago Andrew Misplon
    Hi, I Work Here

    Please send me a link to a post or page where you’ve used the b tag and I’ll take a look.

  15. 9 years, 11 months ago Mylène Eclache

    http://www.mnms.ovh/organisation/

    “Le principe”

    <h2>Tracktl, comment ça fonctionne ?</h2>
    <b>Le principe</b> : chacun poste des chansons dans la playlist - il suffit de la chercher dans le module et de l'ajouter.
  16. 9 years, 11 months ago Andrew Misplon
    Hi, I Work Here

    That text is bold on my side:

  17. 9 years, 11 months ago Mylène Eclache

    Yes it’s what I ve said : if I write “b” tag, it s working.i thought it was what you asking me to post :

    “22 hours, 4 minutes ago Andrew Misplon Hi, I Work Here
    Please send me a link to a post or page where you’ve used the b tag and I’ll take a look.”

    So “principe” is with the “b” tag, and it’s working, but I put it mechanically because the “B” bold icon in WordPress doesn’t write html tag “b” , it write “strong”, see in the other example :

    Le Prieuré dispose de 2 <strong>dortoirs</strong> de 6 et 20 places environ :<span style="color: #ff0000;"> <strong>attention places limitées</strong> </span>!

    So the only way is to replace mechanically one by one the strong tag with b tag in each post ?

  18. 9 years, 11 months ago Andrew Misplon
    Hi, I Work Here

    Apologies, I’ve found the problem. Please enter the following into your Custom CSS plugin:

    /* Strong */
    
    article.entry .entry-content strong {
    font-weight: 600;
    }
    
  19. 9 years, 11 months ago Mylène Eclache

    Finally the second work, but very softly – I tried putting both, and it’s perfect. But still no color !
    Here is the code

    @import  "http://fonts.googleapis.com/css?family=Open+Sans:700";
    
    article.entry .entry-content strong {
    	font-weight: 700;
    }
    
    b, strong {
    	font-weight: 700;
    }
  20. 9 years, 11 months ago Andrew Misplon
    Hi, I Work Here

    Yeah that looks to be working perfectly.

    Ok now onto the next question. Please try re-explain what you’re trying to do with text color?

  21. 9 years, 11 months ago Mylène Eclache

    When I put my text in different color, nothing appear (I put it with the visual interface) – it remains black

    <span style="color: #ff0000;"> <strong>attention places limitées</strong> </span>!
  22. 9 years, 11 months ago Andrew Misplon
    Hi, I Work Here

    Try adding this to Custom CSS to resolve:

    article.entry .entry-content strong {
    color: inherit !important;
    }
    
  23. 9 years, 11 months ago Mylène Eclache

    It’s working ! Thank you SO much !!!

  24. 9 years, 11 months ago Andrew Misplon
    Hi, I Work Here

    For sure, glad we could help.

Replies on this thread are closed. Please create a new thread if you have a question, or purchase a SiteOrigin Premium license if you need one-on-one email support.

Get The Most Out of SiteOrigin with SiteOrigin Premium

Find Out More