Display secondary attributes in 1 column

Hello,
I put a css code which allows to put in 2 lines the attributes of the advertisements everything works well until yesterday, I have q a line which appears updated perhaps?

@media  screen and (max-width: 600px){
  .hp-listing--view-block .hp-listing__attributes--secondary .hp-col-xs-12
  {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    flex-basis: 50%;
    max-width: 50%;
	} 
}

image

Please try this CSS snippet

.hp-listing--view-block .hp-listing__attributes--secondary .hp-row > div
{
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    flex-basis: 100% !important;
    max-width: 100% !important;
}
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.