where to remove this menu item in the header ? The menu item is called “settings” next to my account in header bar.
is it possible that someone had idea too design this template and not have option to remove this “settings” item in magento admin. if so i dont believe
anyway, how is it removed
1 answer
@hotsd101
You can try with my workaround as below:
1. Open file: skin/frontend/default/jm_casual/css/styles.css
2. At approx line 6881, add this new rule:
………………
#jm-setting {
background: url(“../images/hr-top-links.png”) no-repeat right 50%;
display: none; <—- Add this line
position: absolute;
right: 85px;
top: 0;
width: auto;
}
Also you can go to the file: “app/design/frontend/default/jm_casual/template/page/html/header.phtml” and remove “setting” in here.
Hope this help!
Best Regards,
Ziven