your theme looking stranger to me, but perhaps this can be solve with :
open
catalog\view\theme\default2\stylesheet\stylesheet.css
and find:
Code: Select all
.box .top img {
float: left;
margin-right: 5px;
}
also
Code: Select all
#column_left {
float: left;
width: 180px;
margin-right: 10px;
clear: left;
}
#column_right {
float: right;
width: 180px;
margin-left: 10px;
clear: right;
}
just switch the
float: right; to
float: left; or on the other hand to match your picture of title category.
and for your second problem, open
catalog\controller\module\category.php find
change to:
Code: Select all
$output .= '<li class="cat_child">';
then add to
catalog\view\theme\default2\stylesheet\stylesheet.css
after:
Code: Select all
.box .bottom {
height: 5px;
background: url('../image/box_bottom.png') no-repeat;
}
add:
Code: Select all
.cat_child {
padding: 3px 0 2px 0;
}
i assume there no modification before, hope this can help you