Hi
I want to add some additional text to the socket but have it right aligned – how do I do this?
Thanks
Hey Picante,
1. Add the below code to Enfold > General Styling > Quick CSS
.push-right{
position:absolute;
right:20px;
top:50%;
transform:translateY(-50%);
}
@media only screen and (max-width:767px) {
.push-right{
position:relative;
right:auto;
transform:none;
}}
2. Add the below html in Enfold > Footer > Copyrights
<div class="push-right"> Text you like on the right side </div>
Best regards,
Mike
Great – thank you!