Jump to content

[Solved] Subcategory Image Title


Recommended Posts

hi, i saw that u use the streetwear themes, right?

 

you could change the css.. (it is much easier if you use firebug addons to view the styles)

 

try to change:

- css/category.css

(about line 51)
.inline_list li .img
remove >> float: left
(line 58)
.inline_list li .cat_name
add >> display : block;
(line 47) for make it 3 column
.inline_list li
add >> float: left; width: 30%;

 

 


.inline_list li {
padding: 10px 0;
border-bottom: 1px dotted #CCC;
float: left;
width: 30%;
}
.inline_list li .img {
margin-right: 15px;
}
.inline_list li .cat_name {
font-weight: bold;
font-weight: 13px;
display: block;
}

- css/grid_prestashop.css

(about line 106)

.clear

add >> clear: both;

 


.clear {
clear: both;
}

 

It is based on the demo site of streetwear theme.. hope this helps

Link to comment
Share on other sites

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...