[Resolved] Copyright: align left and right

Home Forums Support [Resolved] Copyright: align left and right

Home Forums Support Copyright: align left and right

  • This topic has 4 replies, 3 voices, and was last updated 7 years ago by Leo.
Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #306372
    Alex

    Hi there,

    I am aware of https://generatepress.com/forums/topic/copyright-formatting/ and all the other Copyright bar threads. However, I have an odd problem.

    My CSS in the “Simple CSS” plugin looks like this:

    @media (min-width: 769px) {
        .copyright-right-area {
            text-align: right;
        }
        .copyright-left-area {
            text-align: left;
        }
    }

    Inside the “Custsomize-Copyright” field it looks like this:

    <div class="grid-50 copyright-left-area">copyright text</div>
    
    <div class="grid-50 copyright-right-area">siteinfo</div>

    Unfortunately, what I get is this:

    https://www.pic-upload.de/view-33013001/Clipboard01.jpg.html

    Why is it so uneven? I’m no CSS expert.

    Thanks!

    #306405
    Leo
    Staff
    Customer Support

    Hi Alex,

    Can you try this CSS instead?

    @media (min-width: 769px) {
        .copyright-right-area {
            float: right;
        }
        .copyright-left-area {
            float: left;
        }
    }

    Can you provide a link to your site if this doesn’t work? Thanks!

    #306441
    Tom
    Lead Developer
    Lead Developer

    You can also use the Footer Bar widget area: https://docs.generatepress.com/article/footer-bar-widget-area/

    #306474
    Alex

    Hi Leo, thanks. In fact, the CSS I posted works now – I don’t know why though.

    #306558
    Leo
    Staff
    Customer Support

    Awesome!

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.