Page 1 of 1

Blog plugin in cms

Posted: Thu Sep 10, 2020 10:00 pm
by maxime
when i use the blog plugin in cms , there is the word BLOG wich appears in the web page how can we change this word ans his size ?

Re: Blog plugin in cms

Posted: Fri Sep 11, 2020 6:17 am
by Pablo
The word 'Blog' is defined in the file: plugin.php

The text is a h3 heading.
You can control the font size via CSS:

Code: Select all

<style>
#wb_CmsView1 h3 
{
   font-size: 16px;
}
</style>