Tagged: 

Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #662982

    Dear Kriesi,
    is there a way to align the center of the copyright information, both for the desktop and for mobile viewing?
    Best regards,
    Riccardo

    #663016

    Hey _riccardo_,

    Would you mind providing a precise link to your site, showing the elements in question? We need to be able to inspect them in order to help :)

    Best regards,
    Andy

    #663032

    Sorry Andy.
    here is the data you need
    Ciao
    Riccardo

    #663307

    Hi,

    Please try the following in Quick CSS under Enfold–>General Styling:

    #socket .copyright {
        float: none !important;
    }

    Regards,
    Rikard

    #663312

    Hi,

    use this code inside Quick CSS field:
    #socket .copyright {
    margin-left: 30%;
    }
    and adjust as needed.

    For mobile add media queries to this code, like:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    #socket .copyright {
    margin-left: 25%;
    }}
    

    and adjust as needed.

    Best regards,
    Andy

    #663834

    Thanks Andy.
    this code in Quick CSS field for Pc Desktop it’s OK !
    #socket .copyright {
    margin-left: 30%;
    }
    Sorry, but I did not understand your answer for mobile
    Ciao
    Riccardo

    #664363

    HI Riccardo,

    Did you try my suggestion? Did it work out for you?

    #socket .copyright {
        float: none !important;
    }

    Best regards,
    Rikard

    #664380

    Hi Rikard.
    My Copyrigth is:
    “© 2016 Copyright – First Name Last Name <br>
    P.IVA: 12345678902 – CF: aaaaaa11a11a111a”

    I’m sorry but with your suggestion
    #socket .copyright {
    float: none !important;
    }
    copyright remains stationary on the left
    Ciao
    Riccardo

    #664553

    Hi,

    just use this code:

    @media only screen and (max-width: 768px) {
    #socket .copyright {
    margin-left: 25%;
    }}
    

    and adjust margin-left value as needed.

    Best regards,
    Andy

    #664569

    Thanks, Andy
    My Copyryght is:
    “© 2016 Copyright – First Name Last Name<br>
    P.IVA: 12345678902 – CF: aaaaaa11a11a111a”

    if I use
    #socket .copyright {
    margin-left: 40%;
    }
    is rigth for descktop PC but not for Mobile
    If I use
    @media only screen and (max-width: 768px) {
    #socket .copyright {
    margin-left: 25%;
    }}
    is rigth for Mobile but not for descktop PC
    Best regards,
    Riccardo

    #664592

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    @media only screen and (max-width: 768px) {
    #socket .copyright {
       margin-left: 0%;
    }}
    

    Best regards,
    Vinay

    #664747

    Thanks Vinay.

    in this way the copyright remains to the left.
    I would like to see him at the center, in the same way on Desktop and smartphones

    Best Regards

    Riccardro

    #665129

    Hey!

    Try adding this code to the Quick CSS:

    #socket .copyright {
        float: none;
        display: block;
        text-align: center;
    }

    Cheers! 
    Josue

    #665352

    EUREKA !
    It works !
    Many thanks Josue !
    Ciao
    Riccardo

    #665567

    You are welcome, glad to help :)

    Regards,
    Josue

Viewing 15 posts - 1 through 15 (of 15 total)
  • The topic ‘align copyright information’ is closed to new replies.