Tagged: copyright
-
AuthorPosts
-
July 20, 2016 at 3:00 pm #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,
RiccardoJuly 20, 2016 at 3:35 pm #663016Hey _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,
AndyJuly 20, 2016 at 3:51 pm #663032Sorry Andy.
here is the data you need
Ciao
RiccardoJuly 21, 2016 at 11:54 am #663307Hi,
Please try the following in Quick CSS under Enfold–>General Styling:
#socket .copyright { float: none !important; }
Regards,
RikardJuly 21, 2016 at 11:59 am #663312Hi,
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,
AndyJuly 22, 2016 at 12:38 pm #663834Thanks 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
RiccardoJuly 24, 2016 at 2:41 pm #664363HI Riccardo,
Did you try my suggestion? Did it work out for you?
#socket .copyright { float: none !important; }
Best regards,
RikardJuly 24, 2016 at 3:20 pm #664380Hi 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
RiccardoJuly 25, 2016 at 11:39 am #664553Hi,
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,
AndyJuly 25, 2016 at 12:11 pm #664569Thanks, 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,
RiccardoJuly 25, 2016 at 1:12 pm #664592Hi,
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,
VinayJuly 25, 2016 at 6:23 pm #664747Thanks 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 smartphonesBest Regards
Riccardro
July 26, 2016 at 4:45 am #665129Hey!
Try adding this code to the Quick CSS:
#socket .copyright { float: none; display: block; text-align: center; }
Cheers!
JosueJuly 26, 2016 at 3:09 pm #665352EUREKA !
It works !
Many thanks Josue !
Ciao
RiccardoJuly 27, 2016 at 3:05 am #665567You are welcome, glad to help :)
Regards,
Josue -
AuthorPosts
- The topic ‘align copyright information’ is closed to new replies.