Hi,
As you may see in the below image, I have 2 questions regarding footer modification:
(1)- How can I align copyright in center?
(2)- There is something wrong with direction of telephone numbers here. For instance, I wrote “+60327759754” but it shows “60327759754+”; “+” is in the wrong side. How could it be fixed?
Thanks in advance
Hi Sadegh,
Could you provide us with a link to the site in question so that we can take a closer look please?
Regards,
Rikard
Hey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.copyright {
width: 100%;
text-align: center;
}
and then edit your widget are and wrap your phone number into a custom class as following
<p class="ltr-text">+123456789</p>
and then add following code to Quick CSS as well
.ltr-text {
direction: ltr;
text-align: right;
}
Cheers!
Yigit
Thanks Yigit,
It worked.