Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #198318

    streamingraddios
    Participant

    Hello, thanks for reading.
    1) I can not find where to change H1, H2, H3… font size.
    http://www.equiposempre.com/demos/streamingraddios

    2) I need to change body font size for one content band. How can accomplish this?

    Thanks,
    Sebastian

    #198568

    Darshana
    Moderator

    Hi there,

    Thanks for writing in! You can add CSS rules into your Customizer, Custom > CSS section using the menu Appearance -> Customize.

    
    h1, .h1 {
      font-size: 6em;
    }
    
    h2, .h2 {
     font-size: 5em; 
    }
    
    h3, .h3 {
      font-size: 4em;
    }
    
    h4, .h4 {
      font-size: 3em;
    }
    
    h5, .h5 {
      font-size: 2em;
    }
    
    h6, .h6 {
      font-size: 1em;
    }
    
    p { font-size: 12px; }
    
    body {
      font-size: 14px;
    }
    

    Hope that helps.

    #199150

    streamingraddios
    Participant

    Well, I fixed the headlines. Now I’m having problems with the paragraph.

    <p class=”mts resp-p-timeline w-300″>Contamos con servidores propios de última generación potentes y confiables. Lo único que necesitarás es un computador con conexión a Internet.</p>

    How can I make it smaller witouth changin the rest of the site. I want to keep the font but change the size.

    “p { font-size: 12px; }” doesn’t work

    Thanks,

    #199433

    Friech
    Moderator

    Hi there,

    Just add an inline css style on that specific paragraph.

    <p class="mts resp-p-timeline w-300" style="font-size: 16px;">

    Hope it helps, Cheers!

    #199980

    streamingraddios
    Participant

    Thanks but that didn’t change the size. It looks the same.

    <p class=”mts resp-p-timeline w-300″ style=”font-size: 11px;”>Contamos con servidores propios de última generación potentes y confiables. Lo único que necesitarás es un computador con conexión a Internet.</p>

    #200327

    Paul R
    Moderator

    Hi,

    You can try a much bigger font size to see if it is working.

    
    <p class="mts resp-p-timeline w-300" style="font-size: 70px;">Contamos con servidores propios de última generación potentes y confiables. Lo único que necesitarás es un computador con conexión a Internet.</p>
    

    Thanks.

    #202573

    streamingraddios
    Participant

    No that doesn’t work. How you can change the size of the text on the content band on integrity 1?

    #202950

    Christopher
    Moderator

    Hi there,

    Please check the screen shot:

    Commercial Photography

    You wrap your text <span style="font-size:16pt;"></span> tag which has font size, So you can’t see any changes by adding font size in <p> tag, please remove style from span tag.

    Thanks.