left margin

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
Hace 13 años
hey
where can I change the margin-left:15 pixels in the categories manu.
I need to change it to margin right.
10x
roee
Hace 13 años
Look at \Modules\CategoryNavigation.ascx.cs file, CreateChildMenu() method. Replace
int padding = level++ * 15;

with
int padding = level++ * 10;
Hace 13 años
I didint check it but I cant understand how it change
<li class="li_unselected" style="margin-left: 15px">some text</li>
to

<li class="li_unselected" style="margin-right: 15px">some text</li>

Hace 13 años
I made the chenge you said - but it dosnt help...
please advise
Hace 13 años
In the same file replace also

"margin-left: {0}px"

with

"margin-right: {0}px"
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.