spacing menu titles

paolodll / 2012-09-12 12:26:11   

Hello,
I would like to have different space between menu titles,
something like:

about

project1
project2

project3
project4

info
home

Anyone knows how to do it?

thanks in advance

Paolo

julieevanoff / 2012-09-12 12:44:46   

I have the same question! Thanks.

Vaska A / 2012-09-12 13:02:00   

The section titles are in a span...you would do it something like this (you need to look at your source code to get the id numbers too:

  1. #index ul li span#section_title_2 {
  2. display: block;
  3. margin-bottom: 12px;
  4. }
  5. #index ul li span#section_title_4 {
  6. display: block;
  7. margin-bottom: 18px;
  8. }

Let us know how it goes. ;)

linuesa / 2012-09-12 14:03:49   

On which file? Base.css?

Vaska A / 2012-09-12 14:19:30   

I would put these rules at the end of your style.css file.

paolodll / 2012-09-12 19:45:41   

Thanks Vaska, works perfectly...but where I get the ID number? I'm not able to modify the titles I want to...

arsondpi / 2012-09-12 19:48:35   

Right click and choose View source in your web browser... You'll see each section's id in the source code...

paolodll / 2012-09-13 19:42:07   

GREAT, Thanks!

Hayden_Myrick / 2013-06-30 18:25:28   

where in the actual code above does the ID go?

Hayden_Myrick / 2013-06-30 18:59:52   

never mind that. i figured it out, but the spacing between my HOME title and AN AFTER THOUGHT are not spacing when i do that. where can i specifically target those two titles?

haydenmyrick.com

This thread has been closed, thank you.