hello frosticek
i have car attributes installed and its seems to be working good . i am just trying to make the layout abit nicer for the theme.
i created div to surround all the other divs and put this is the css file
.__200 { height: 220px; /*your fixed height*/-moz-column-count: 3; -moz-column-gap: 80px; -webkit-column-count: 3; -webkit-column-gap: 80px; display: inline-block;
}
which make the layout alot neater but a problem when on smaller screens
so i replaces the above with
/* Car Attributes responsive */
@media screen and (max-width: 1024px;) and (max-width: 1200px){
.__200 { height: 220px; /*your fixed height*/-moz-column-count: 3; -moz-column-gap: 80px; -webkit-column-count: 3; -webkit-column-gap: 80px; display: inline-block;
}
}
i am still learning and usually i figure it out but i have never been able to get @media to work.
thanks for the help
Chris