How to remove Copyright footer

offline

Posts

7

Likes

3

Bits Credits

0

LEVEL

0

160 XP

Hello, how to remove or personalize footer copyright info ?

Snap79.png
 
Liked by:

FateKid

Devil Did It
offline

Posts

16,225

Likes

371,318

Resources

3,061

Bits Credits

1,034

LEVEL

11

6,835 XP

You can find the CSS className of the element in your browser console (inspector).
Taking a wild shot at this without having your code in front of me -- give the following a try.

Add this CSS to your custom CSS location in IPS Suite. I'm assuming this is the Copyright CSS container element, and I'm simply setting display attribute to none.
CSS:
p#elCopyright { display: none; }
 
Liked by:
Top Bottom