Question

HI I am trying to change the look of the customer login page. How do add a line or separator in between this 2 blocks? like the image I found on net. When in mobile view the line will gone.

enter image description here

Was it helpful?

Solution

try to following way

Ex: like below is your second Block

<div class="col-2 registered-users" </div>

Below css

<style>
.col-2 {
    padding-left: 30px;
    border-left: 1px solid #ededed;
}
</style>

OTHER TIPS

Please check the following:

    @media only screen and (min-width: 770px){
.block.block-customer-login {
    border-right: 1px solid #ededed;
}
}

https://drops.meetanshi.com/CB74kq

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top