I am using the Sky theme at syntaktisk.dk.
I love it, it is absolutely brilliant. There is one thing I would like to change, and I... simply understand too little of Drupal themeing to do it myself.
It is in two parts. When I click on a menu point, it is marked with an very well-chosen blue color. But an <- arrow appears, and I find it somewhat unnecessary, since the menu point is already colored. Can I remove this?
Also, the submenus are almost parallel with parent menu point. Example: http://syntaktisk.dk/?q=node/18 - in there, "Sprogligt set" is the parent, and "Om Esperanto" and "Teknisk Sprog" are child points. Would it be possible to indent the child menu points a bit more?

Comments

phsc’s picture

Status: Active » Closed (fixed)

Hi mjjzf

1. remove <- arrows
You can adjust these settings easily yourself. Open 'style.css' in your Sky Theme's root folder (i.e. 'http://syntaktisk.dk/themes/sky/') and go to 'body.right #sidebar ul.menu a.active:before'. You can delete this whole line or just 'content:"<- ";'. it doesn't really matter.

2. more indent the child menus
Open again 'style.css' and tweak the settings in line '#sidebar ul.menu li a' for parent menu items. for child menu items tweak '#sidebar ul.menu li li a' and for child-child menu items tweak (now it should be obvious ;-) ) tweak '#sidebar ul.menu li li li a'. adjust the value after 'text-indent' to fit your needs.

hope this helps.

greetings

mjjzf’s picture

This is brilliant - thank you!