Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1446766

    I would like to insert a vertical pipe on the right side of the first footer column (i.e., acts as a separator between the first and second footer columns. You can see an example in the footer of the following website: https://hennessey.com/web-development/

    What is the easiest way to accomplish this?

    Again, I am only looking to insert the one vertical pipe. Don’t want it between every column.

    #1446768

    you can have it in between the first and second column:

    #footer .flex_column.first  {
      border-right: 1px solid rgba(255,255,255,.3);
    }

    or more nearby the content of your first column:

    #footer .flex_column.first .widget {
      border-right: 1px solid rgba(255,255,255,.3);
      padding-right: 30px;
    }
    #1446786

    Neither one of these codes appears to be working. I have flushed the cache. Still nothing.

    #1446795

    Hi,

    Thank you for the update.

    We tested the css code above, and it seems to be working as expected. We may need to inspect the site to provide an appropriate modification. Please provide the site URL in the private field, and in the meantime, try toggling or temporarily disabling the Enfold > Performance > File Compression settings.

    Best regards,
    Ismael

    #1446797

    URL is below. File compression disabled. No change.

    #1446804

    Hi,

    Thank you for the link.

    The border is visible when we checked. Please check the screenshot in the private field. To create some space between the widget and the border, please update the css code:

    #footer .flex_column.first {
        border-right: 1px solid rgba(255,255,255,.3);
        padding-right: 50px;
    }

    Best regards,
    Ismael

    #1446806

    Thank you. I can see the pipe now, but instead of there being space between the widget and the board (which would be great), it looks as if the text has simply spread to the right to fill up the space created. Thoughts?

    Also, how can I make the pipe be white like the surrounding text, etc.

    Finally, if I want the pipe to be shorter, how do I adjust the overall length of the pipe from both the top and bottom?

    #1446830

    Hi,

    Finally, if I want the pipe to be shorter, how do I adjust the overall length of the pipe from both the top and bottom?

    To control the size of the border, you can replace the previous css code with the following code:

    #footer .flex_column.first:before {
        height: 80%;
        width: 1px;
        position: absolute;
        right: -20px;
        background: #ffffff;
        visibility: visible;
        top: 30px;
    }

    Adjust the height property as needed.

    Best regards,
    Ismael

    #1446844

    Perfect! This is exactly what I was seeking to achieve. Thank you. You can close the thread.

    #1446859

    Hi,

    Great, I’m glad that Ismael could help you out. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Insertion of Vertical Pipe in Footer Widget’ is closed to new replies.