Activello Footer and CSS

Hi @cronisco,

I hope you are well today and thank you for your questions.

1) I tried to modify the footer. I went for:

.copyright.col-md-12 {
display: none;
}
to get rid of the footer. But I think that the right solution for a customer would be adding something easy like: “Copyright (c) 2016 | ABC Inc.”, for example. With a link on the company name. But, how can I implement this on Activello-child? Apparently I am not able to do so, in the Custom CSS neither.

Yes you are allowed to change it and you can try modifying this by using the child theme solutions posted in the following topics.

https://colorlibsupport.com/t/modify-footer-for-mobile-version/

https://colorlibsupport.com/t/editing-footerheader/

  1. Also, I changed the colours to the menu words: I decided to get them blue whenever the mouse stands over them. But when I click on a word, for example I click on “Home”, it goes purple: Activello standard colour, I assume. How can I change the purple colour into another one?

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS

#page .navbar-default .navbar-nav > .active > a {
    color: #000;
}

Please change the color value in the above code to whatever you want to use by referring the following pages.

http://www.w3schools.com/html/html_colorvalues.asp
http://www.w3schools.com/tags/ref_colorpicker.asp

Best Regards,
Movin