• Resolved chemistryman

    (@chemistryman)


    Hi Friends,

    Please, can any body advise how to reduce the empty space of the bottom black side of “All Rights Reserved” to be smaller. It is really little bit big and empty.

    Thanks a lot … ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • In you child theme’s style.css file, use the following snippet:

    #site-generator {
    font-size: 12px;
    font-size: 1.2rem;
    }

    Increase or decrease the value for font-size as you wish. As noted in a previous reply to you: the top value, given in px, should be 10 times the value of the bottom value, given in rem. This is in order to provide support for older browsers.

    Thread Starter chemistryman

    (@chemistryman)

    Thanks a lot for your help, this is to reduce the size of the text itself, but I need to reduce the free space above and below the “All Rights Reserved” text.

    thanks for your cooperation,

    Oh! Sorry, I misread.

    The actual CSS you need to change is:

    #site-generator .site-info {
    padding: 10px 0;
    padding: 1rem 0;
    }
    Thread Starter chemistryman

    (@chemistryman)

    Great, it is working.

    Thanks a lot for your help.

    Awesome. ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Reducing "All Rights Reserved" bottom side space’ is closed to new replies.