Underline Section Titles

sdz / 2012-10-24 13:03:42   

Hi guys,

I'm using Indexhibit 2 and I try to underline section titles without results.

I found an older post about this customization (here : indexhibit.org/forum/thread/10013/) and tried to apply the code but it doesn't look what I want to.

When I try to apply this to the section titles :

/* styles for the section titles */
#index ul.section span.section_title,
#index ul.section span.section_title a
{
border-bottom:1px solid;font-weight: bold;
}

It underlines the text but I don't want the line stops at the end of the text. I want it to continue through the frame. I don't understand why it works when the code is applied to the exhibits and not to the section titles :

/* exhibit titles */
#index ul.section li.exhibit_title {border-bottom:1px solid; }

If it's not clear, take a look to my website to see the difference. sebastiendeprez.com

Is there anyone that experienced the same issue ?

Thanks guys !

arsondpi / 2012-10-24 15:57:34   

Just add a display: block; in the css rule...
Example:

  1. #index ul.section span.section_title 
  2. {
  3. border-bottom:1px solid;font-weight: bold; display: block;
  4. }
sdz / 2012-10-24 21:38:05   

Great, it works ! Thank you very much. Now I just have to find the way to don't display the border for the "main" section.

This thread has been closed, thank you.