
Originally Posted by
atomiccafe
I also have a problem with my Top Nav when viewed in iPad. There's a margin-left:16px; that's causing the last tab from going outside the container and I can't find where to edit it to replace 16px to 0px but no one seems to be helping.
Hi,
I had the same issue. I cant say that the people who wrote this had a very linear understanding of the system involved.
Probably the same reason it took, i dont even know how many versions to introduce low stock alert. You would think some common sense involved with a e-commerce website would make that a necessity.
Like designing a car without a petrol level indicator.
Anyways, what you are looking for can be achieved by editing the style.css and forcing it to follow a new margin.
Example:
HTML Code:
.aspnetMenu_StaticMenuItemStyle a:hover
{
color: #555;
text-decoration: none;
font-weight: bold;
font-size: 12px !important;
margin-left: 8px!important; <--! that's the way i did it. -->
cursor: hand;
}
Hope that helps.