left margin

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

with
int padding = level++ * 10;
13 years ago
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>

13 years ago
I made the chenge you said - but it dosnt help...
please advise
13 years ago
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.