Reply To: Various styling questions

Home Forums Support Various styling questions Reply To: Various styling questions

Home Forums Support Various styling questions Reply To: Various styling questions

#158272
Tom
Lead Developer
Lead Developer

Hi Kerry,

1. In your Copyright textarea in “Appearance > GeneratePress”, you can do something like this:

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

Then add this CSS:

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

2. Currently the copyright area doesn’t create the emojis. Your best bet would be to use an image, or a font awesome icon like we do in our footer.

3. Not currently – it just gives you a widget which you can link icons to your social profiles with. A share option is in future plans.

4. In your image HTML, you want to add this class: aligncenter

So it would look like: <img src=".." class="aligncenter" />

5. You can turn sidebars on/off on individual pages using the metabox. More on that here: https://generatepress.com/knowledgebase/choosing-sidebar-layouts/

Hope this helps! 🙂