• Resolved Oby.

    (@oby4455)


    Hello,

    First of all, this is the best plugin for maintenance I have used so far!

    I would like to make the social icons bigger and also increase the font size of the copyright text.

    How can I do this with custom CSS ?

    Thank you!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author NiteoThemes

    (@niteo)

    hello @oby4455, thanks!

    Sure I can provide you with some CSS code, but please share your website or CMP theme your are using, so I can suggest working code.

    Alex

    Thread Starter Oby.

    (@oby4455)

    Thank you so much ! Here is my website : https://goo.gl/6Pyqja

    Plugin Author NiteoThemes

    (@niteo)

    Okey, you can make both social icons and copyright bigger by this little snippet: (just change 18px to any number you want)

    footer {
        font-size: 18px;
    }

    or independently:

    .social-list {
        font-size: 18px;
    }
    
    .copyright {
        font-size: 18px;
    }

    hope that helps, Alex

    Thread Starter Oby.

    (@oby4455)

    Thank you it did work! I also made the socials icon bigger and change the color. I am sharing my code :

    /*Change Copyright Font Properties*/
    .copyright {
        font-size: 16px;
    	color: white;
        font-weight: bold;
    }
    
    /*Change Social Icons Font Properties*/
    .fa {
      color: white; 
      font-size: 1.5em; 
    }

    https://prntscr.com/kecrmp

    • This reply was modified 6 years, 7 months ago by Oby..
    Plugin Author NiteoThemes

    (@niteo)

    Good job!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘CSS code to make social icons and copyright text bigger’ is closed to new replies.