submenu buttons and text decoration

annina / 2013-01-20 16:32:06   

hello,
i have two questions;
1. I would like to have my submenu(?) buttons, farther away to the right, something like this:

projects
   Heimat l
   heumat ll

where can i find it and change it in the style css?

2. instead of , i would like to have a small dot from the left side of the opened button. (and only on the submenu, not on the main one)
where can i find this one?

will appreciate any help
thanks allot

anninalingens.de/

annina / 2013-01-20 16:33:29   

sorry, on number 2:
instead of line-through, i would like to have a small dot from the left side of the opened button. (and only on the submenu, not on the main one)

annina / 2013-01-20 16:43:29   

soory, made the first question happened...if any one want to know how:
in style.css: padding-left
#index ul { list-style: none; margin: 0; padding-left: 20px; }

still looking for the second problem...

arsondpi / 2013-01-20 16:55:35   

Find line 53 in your style.css and edit the padding-left attribute

  1. #index ul {
  2.     list-style: none outside none;
  3.     margin: 0;
  4.     padding-left: 40px;
  5. }

As for the second one simply add:

  1. #index ul.section li.active {
  2.     list-style: disc ;
  3. }

to your style.css

annina / 2013-01-20 17:20:33   

amazing!!!
thank you so much!!

This thread has been closed, thank you.