Font Size - OJS 2.4.8.5

On our OJS 2.4.8.5 (Cuaderna Vía), how can I change the font size? The CSS style sheet is:

@charset “utf-8”;
/* CSS Document */

#main {
background-color: #fff;
border-top: 1px solid #660000;
border-bottom: 1px dotted #660000;
margin-top: 15px;
}

#header h1 {
line-height: 2.5;
font-family: “Times New Roman”,Times,Georgia,serif;
“style=” text-transform: capitalize;
letter-spacing: 10px;
font-size: 2em;
background-color: #FFF;
color: #FFF;
}

#main h2 {
font-family: “Times New Roman”, Times, Georgia, serif;
“style=” text-transform: capitalize;
}

#leftSidebar {
float: left;
width: 14%;
padding: 1em 0em 1em 0em;
font-size: 1em;
height: 100%;
margin-left: 10%;
margin-right: 2%;
display: inline;
overflow: hidden;
}

Hi @ohiray

Your question is not OJS related, is more a CSS question… and your OJS version is old, but let’s see what we can do.

if you like to change the font size, you need to change “font-size” property in your CSS.

In the styles you are publishing you modify h1 sytles (in #header) and #leftSidebar but looking to your site I think you want to change the font size for all your content that now is 0.7em.

Try adding this to the end of your CSS and play with the font-size value to see if this is what you want:

#content {
    font-size: 0.9em;
}

Cheers,
m.

Success! Thank you so much! Yumi

What do I need to add if I want to change the font size for the navigation?
image

I figured out: image