Jump to content

Text and size


Luca Azalim

Recommended Posts

I believe the font size and colour is controlled at the theme level. For my site, I use 14px Roboto text (a bit larger than normal). So I inserted the following code into custom.css:

 

.ipsType_medium {
    font-size: 14px;
      font-weight: normal;
      font-family: 'Roboto', Helvetica Neue, Helvetica, Arial, sans-serif;
      
}

.ipsType_normal {
    font-size: 14px;
      font-weight: normal;
      font-family: 'Roboto', Helvetica Neue, Helvetica, Arial, sans-serif;
      
}

.ipsDataItem_title {
      font-family: Helvetica, Arial, sans-serif;
      }


body {
    font-family: 'Roboto', Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
      font-weight: normal;
    background-color: #ebeef2;
}

.ipsType_small {
    font-size: 11px;
      font-weight: normal;
}

.ipsWidget .ipsDataItem_title {
    font-size: 14px;
      font-weight: normal;
      font-family: Helvetica, Arial, sans-serif;
}

 

And in globalTemplate I inserted:

<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'> under <!DOCTYPE html>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...