indenting specific sections of copy

justin73 / 2012-12-22 06:10:40   

hi there,

i've checked as many threads as i could find in relation to my specific requirement, but i couldn't find any perfect fits, so...

justin-andrews.info/index.php/cv/

i'm trying to work out how to indent the listings in my cv to the right of each year (which is listed in reverse-chronologic order), so that the title of each exhibition starts cleanly in line with a margin that is to the right of its year.

this is so easy to do in word - just press the 'tab' button...i have managed to do some minor tweaking in the style sheet such as type colour and size, but this has got me completely lost!

any help here would be very much appreciated.
i have to say though - indexhibit is a joy to use - its simplicity is the product of some really great thinking.

thankyou,
justin.

arsondpi / 2012-12-22 08:51:26   

Use css for this. Add the following to your style.css (Admin/Assets/Theme/style.css)

  1. .tab {
  2.     display: inline-block;
  3.     width: 50px;
  4. }

This will give you a "tab" space wherever you use it.
Edit your exhibit and for example edit:

  1. education
  2. <span class='tab'>2003</span>Master of Philosophy (Visual Art), NITA School of Art, ANU, Canberra
  3. etc, etc

and also:

  1. <span class='tab'>2012</span>In Darkness Born, TCB Inc., Melbourne
  2. <span class='tab'></span>Drawing Wall #8, Shepparton Art Museum

Note that there's nothing inside the second line.

justin73 / 2012-12-22 09:01:29   

spot on, arsondpi.
thankyou so very much!

JA

This thread has been closed, thank you.