Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1373868

    Dear support,

    i try to achieve a layout like in the first screenshot in privat section. I need a gradient left border – but this seems not to be possible in a color-section. Is there a better way to achieve this? i also tried a background picture but then there is no padding-left to achieve the “box”-style.

    #gradient-border {
    	padding: 15px 0px 15px 20px;
    	border-left-width: 15px;
    	border-left-style: solid;
    	border-image: linear-gradient( to bottom, #E95A1A, #6F536B, #142453 ) 1 100%;
    	border-right-width: 0;
    	margin: 10px;
    	
    }

    Thanks for any help!

    • This topic was modified 2 years ago by dondela.
    #1373905

    Hey dondela,
    Thanks for the login to your site and the screenshot, the issue I see is that the color section is a full width element and you want the left border and the background color to have some padding from the edge, so you could target the inner color section div like this:

    #gradient-border .container {
    	background-color: #e3e8ec;
        background-image: url(https://your-site.de/2022/wp-content/uploads/2022/10/gradient-border-colorsection.jpg);
        background-repeat: no-repeat;
        background-position: 0% 50%;
        background-attachment: scroll;
    }
    #gradient-border {
    	padding-left: 50px;
    }
    #gradient-border .content {
    	padding: 0px;
    }

    I added the ID to your color section and added this css to your quick css, please clear your browser cache and check that this is what you were looking for.

    Best regards,
    Mike

    #1374102

    Hey Mike,
    thank you so much for your help, this is it!
    One more question: I would like to make the background-gradient to disapear on mobile- view – is this possible?

    #1374107

    Hi Dondela!

    Please add following code to Quick CSS as well

    
    @media only screen and (max-width: 480px) { 
    #top #gradient-border .container {
        background-image: none;
    }
    }
    

    Regards,
    Yigit

    #1374110

    Hi Yigit,
    thank you!
    Would it be possible to add a little padding to the left in mobile-view?

    #1374115

    Hi,

    I edited the code and changed it to following one

    
    @media only screen and (max-width: 480px) { 
    #top #gradient-border .container {
       background-image: none;
       padding-left: 15px !important;
    }
    #top #gradient-border { 
       margin: 0;
       padding: 15px 0px 15px 0px;
    }
    }
    

    Please review your website :)

    Best regards,
    Yigit

    #1374129

    Thank you Yigit – awesome support!
    :-)

    #1374134

    Hi,

    You are welcome!

    Let us know if you have any other questions and enjoy the rest of your day :)

    Best regards,
    Yigit

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘gradient border colorsection’ is closed to new replies.