Page 1 of 1

[SOLVED] Showtime 3.0 - Changing the H2 Title Style

Posted: Mon Apr 02, 2012 12:07 am
by amhoffmaster
I've installed the latest showtime slideshow 3.0 with CMSMS 1.10.3.

It seems that the titles in showtime are assigned to the <h2> style. This conflicts with the styles I have setup for the content area where I have placed the slideshow. My <h2> has a background color. This is a problem because that background is now displaying in the showtime slideshow title with the background. I don't want to define a custom div because my client won't know how to do that when creating new slideshows. I see the <H2> style is in a lot of files in the module. I'm not a programmer so I'm a little hesitant to change all these references.

Anyone have a better idea of how to change the style of the showtime title?

Re: Showtime 3.0 - Changing the H2 Title Style

Posted: Mon Apr 02, 2012 11:21 am
by mcDavid
do you have an example of the page with this problem?

Re: Showtime 3.0 - Changing the H2 Title Style

Posted: Mon Apr 02, 2012 12:38 pm
by amhoffmaster
http://www.tbonesmarketplace.com/index.php
Please note that this site is under development.

Re: Showtime 3.0 - Changing the H2 Title Style

Posted: Mon Apr 02, 2012 6:07 pm
by Dr.CSS
Add this to your main style sheet after the default h2 call...

#comments_st_1 h2 {background-color: transparent}

Re: Showtime 3.0 - Changing the H2 Title Style

Posted: Mon Apr 02, 2012 8:23 pm
by mcDavid
or use #content > h2 {..} to only style the <h2> elements that are direct children of the #content div.

Re: Showtime 3.0 - Changing the H2 Title Style

Posted: Tue Apr 03, 2012 12:45 pm
by amhoffmaster
Thanks for the tip on the style sheet. Adding that line after my content h2 worked.