Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1000682

    Hi!
    On my website I seperate content elements with the diagonal border element.
    At end of my website I use a grid element, underneath there is the contact area, it´s a widget element at footer.
    I want also a diagonal border between these elements.
    How can I set this?

    #1001175

    Hey akapoun,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    CSS Snippet:

    
    /* CSS - Diagonal Footer border */
    
    
    /* Footer background */
    #footer {
    	padding-top:200px;
    }
    #footer:before {
    	content:'';
    	position: absolute;
    	height:200px;
    	left: 0;
    	right: 0;
    	background: #f8f8f8;
        top: -100px;
       transform:skew(0deg,-5deg);
       -ms-transform:skew(0deg,-10deg);
       -webkit-transform:skew(0deg,-5deg); 
    }
    
    
    

    Best regards,
    Vinay

    #1001340

    Thank you. On landing page it works, but on portolio pages the content gets cut off at the bottom.
    Maybe you can have a look on it.
    I deleted code meanwhile.

    #1001504

    Hi,

    Please feel free to adjust the padding top and height value in the code to suit your design :)

    Best regards,
    Vinay

    #1001515

    I´m sorry, I tried but somethin always doesn´t fit or is cut off, please can you have a look on it.

    #1001558

    Hi,

    Please check the link mentioned in private content area.

    Add a whitespace separator element with 100px height for the portfolio or any other page where content overlaps the diagonal border at the bottom.

    Update the body background color to #f8f8f8 or the diagonal color to white to match the background colors.

    Best regards,
    Vinay

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