I need to change font size of style of Nijamonials to match the rest of our web (http://www.t-innova.com/). I've looked for CSS files to do it, but I do not find none of them.
Can anyone help me ?
Thank you in advance.
Ronald
I need to change font size of style of Nijamonials to match the rest of our web (http://www.t-innova.com/). I've looked for CSS files to do it, but I do not find none of them.
Can anyone help me ?
Thank you in advance.
Ronald
Hi Ronald,
Welcome to Ninja Forge.
Thanks for providing the link, always helpful.
Try to take the following steps in order to match the website's font size:
- open oceanic.css from /media/com_ninjamonials/styles/oceanic/
- Add the following CSS definiton:
font-size: 12px;
or
font-size: small;
- To the following CSS rule (near line 23):
blockquote.nm-summary div, blockquote.nm-testimonial div, blockquote.nm-summary, blockquote.nm-testimonial, blockquote.nm-summary p, blockquote.nm-testimonial p {
background: transparent;
border: none;
padding: 0;
margin: 0;
text-decoration: none;
font-style: normal;
}
- Like so:
blockquote.nm-summary div, blockquote.nm-testimonial div, blockquote.nm-summary, blockquote.nm-testimonial, blockquote.nm-summary p, blockquote.nm-testimonial p {
background: transparent;
border: none;
padding: 0;
margin: 0;
text-decoration: none;
font-style: normal;
font-size: 12px;
}
I hope this helps.
Let us know how it goes.
Kind regards,
John
Oh, fine !
I didn't search CSS in this folder, I'm sorry.
I've messed a bit with it until I got what I needed.
I've added this line:
.nm-testimonial {font-size:10pt;text-align:justify;color: #a0a0a0;}
Cause I didn't found a way to modify font size of the testimonial's body.
I also createated a 'orange' oceanic, all what I needed.
Thank you very much, John !
Ronald
You're welcome, Ronald.
Great to hear you were able to work it all out. Good job!
Kind regards,
John