Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #889567

    Hi,

    I am trying to modify the socket/copyright line so that I have the typical copyright info on the left, then also a second line of text on the right of the socket. The same as this site here: https://www.mcmaster.com/.

    I have tested this on a page using this code: (in private content)

    On the test page the Blurb to go here is on the right as I want it, but when I insert this HTML in the copyright line of the theme options, it does not float right.

    Any ideas??

    Thanks in advance.

    #889574

    Hey timkeeley,
    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.