Jump to content

[PS 1.7] How to show manufacturer/brand page


NicolasIT

Recommended Posts

  • 1 year later...

If you want something like the image attached is easy with CSS...

.brand {
    display: block;
    float: left;
    padding: 10px;
    border: dotted 1px;
    margin: 5px;
    text-align: center;
}

.brand:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.brand-products {
    display: none;
}

.brand-img {
    width: 200px;
    height: 100px;
}

Regards

 

 

Captura de pantalla 2018-10-01 a las 23.15.13.png

  • Like 4
Link to comment
Share on other sites

  • 11 months later...

.brand {
    display: block;
    float: left;
    padding: 10px;
    border: dotted 1px;
    margin: 5px;
    text-align: center;
}

.brand:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.brand-products {
    display: none;
}

.brand-img {
    width: 200px;
    height: 100px;
}

 

Where should i place this code? 

Link to comment
Share on other sites

  • 6 months later...
  • 1 month later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...