XF 2.1 Move Copyright in left side

CITAKU

Member
Hi,

Is allowed to move "Forum software by XenForo™ © 2010-2019 XenForo Ltd" in left side of footer? If it is allowed can you help me how to put in same row with "Contact usTerms and rules Privacy policy Help"

198503


I seen this reply:
Add extra.less :)...

Code:
.p-footer-copyright {
    text-align: left;
}

I did but it wont show in same row with "Contact usTerms and rules Privacy policy Help"
198504


Thank you!
 
CSS:
.p-footer-copyright {
    text-align: left;  margin-top: -25px; }
this might be the simple way to achieve to that you want
you can change the number according to your need.
for responsive you can add this too in extra.less
CSS:
@media (max-width: 650px){
.p-footer-copyright {  margin-top: 20px;   }
}
 
CSS:
.p-footer-copyright {
    text-align: left;  margin-top: -25px; }
this might be the simple way to achieve to that you want
you can change the number according to your need.
for responsive you can add this too in extra.less
CSS:
@media (max-width: 650px){
.p-footer-copyright {  margin-top: 20px;   }
}

Hi,

Thanks for help, it worked but it don't work for mobile
559F5CA5-B87A-4D33-AE1E-813C52CA2249.webp

Is there any way to fix this issue for mobile phones?


Thank you
 
Top Bottom