• Hi Guys
    I want to change the fonts on the site using customize menu. It changes briefly but when I refresh the site it goes back to the original.
    Any ideas

    CSS changes

    .round-div {
    border: 104px solid #CD853F;
    }
    .navbar .nav > li > a { color: #FFFFFF; }
    .navbar .nav > li > a:focus,
    .navbar .nav > li > a:hover { color: #FFFFFF; }
    body, #main-wrapper, header.tc-header, footer#footer .colophon {
    background-color: #CD853F;
    margin-top:     0px;
    margin-bottom:  0px;
    padding:        10px 10px;
    
    .}
    header.tc-header {
    background-color: #CD853F ;
    }
    .navbar .nav > li > a {
      font-size: 22px;
      padding: 5px 10px;
      text-transform: uppercase;
    }
    .navbar-wrapper .brand {width:100%; float:right;}
    .navbar-wrapper .navbar {width:100%; float:left}
    
    .woocommerce .label > label {
        color: #5a5a5a;
    }
    .woocommerce table.shop_attributes  {
    background-color: #CD853F;
    }
    
    .woocommerce div.product form.cart table td {
        padding-left: 0;
    }
    tr:nth-child(2n+1) td, tr:nth-child(2n+1) th {
        background-color: #cd853f;

    Thanks !

Viewing 6 replies - 1 through 6 (of 6 total)
  • A link to your site could help.
    Sure you saved the changes?
    Also, have you cleared your browser cache?
    And also++ here:

    tr:nth-child(2n+1) td, tr:nth-child(2n+1) th {
        background-color: #cd853f;

    closing brace missing (though unrelated to your issue), is this a typo when pasting here or..?

    Thread Starter brestomasz

    (@brestomasz)

    https://kontrabanda.net/ have a look please
    the fonts I want to use are Impact & Palatino

    This is what I see: https://i62.tinypic.com/140w6bs.png
    Is what you expect?
    If yes, then you’re is just a cache issue. Clear your browser cache.
    Also, about the small first letter, I suggest to add this to your custom-css :

    .tc-header .navbar .nav > li > a:first-letter{
        font-size: inherit;
    }

    Hi @brestomasz
    a bug regarding to web safe font pairs has been discovered, and you’re right ??
    To fix it temporarily before the next update, you have to build a child-theme and put the following css in its style.css

    .site-title,.site-description,h1,h2,h3,.tc-dropcap {
        font-family : Impact,Charcoal,sans-serif;
    }
    
    body,.navbar .nav>li>a {
        font-family : "Palatino Linotype","Book Antiqua","Palatino",serif;
    }

    p.s.
    the reason why you have to build a child-theme and not use the custom css box is because of some wp themes rules which prevents the use of quotes and double quotes in custom css boxes. :/

    Theme Author presscustomizr

    (@nikeo)

    Following up : I confirm that this web safe font pair issue is currently being fixed.

    Child theme : using a child theme is pretty easy, you’ll want to read this quick doc about how to use a child theme with the Customizr theme.

    HI there! Can you tell me when you are expecting an update on the Google fonts option? I am also having this issue but with all of them. Even websafe. I am trying this with Georgia/Verdana and they look super, then they revert back to uugly. ?? I even am trying to test the above in child theme, no luck.

    Thanks!!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Google Fonts Problem’ is closed to new replies.