Footer Font Size for Adaptable Theme

Footer Font Size for Adaptable Theme

by marisol castro -
Number of replies: 2

Hello!

We are using Moodle 3.3 with the Adaptable 1.5.3 theme and there is no option to change the font size for the footer.  I do not want to change the block footer settings because this impacts all of the blocks on the site.

I would imagine there is html code to change just the footer area?  I am still learning html code so any assistance would be truly appreciated! 

Average of ratings: -
In reply to marisol castro

Re: Footer Font Size for Adaptable Theme

by Оскар Верджинов -

I had the same issue. Edit the adaptable.css file located in /moodle/theme/adaptable/style like this:


#page-footer,

#page-footer p {

    background-color: setting:footerbkcolor;

    margin: 10px 0 0;

    text-align: left;

    color: setting:footertextcolor !important;

    border-top: 0;

    font-size: 100%;

    word-wrap: break-word;

}


#page-footer h3 {

    color: setting:footertextcolor !important;

    word-wrap: break-word;

    font-size: 100%;

}


Note that these changes will not be saved if you install a new theme update.

In reply to Оскар Верджинов

Re: Footer Font Size for Adaptable Theme

by Miguel Ángel -

Thanks for your reply.

Instead modify the CSS I put part of your code at Site admin / Appearance / Themes / Adaptable / Custom CSS and JS. Then you have no to modify the CCS if theme is updated.

The code is 

#page-footer p {   font-size: 70%;  }

And the font was reduced.