This can be done with use of "prefixed" css declarations. Please use firebug /chrome dev tools to find unique id of module position where NSP is posted or add a custom class to NSP itself and prefix with it when creating declaration.
Basing on your site:
- Code: Select all
#gkMainbody h2 {}
will change look of header " The Latest" and:
- Code: Select all
#gkBottom2 h2 {}
will change look of header " THE DAIRY".
If you want to address headers inside of NSP slides it might be more complicated and nth-child selector should be needed:
- Code: Select all
#gkBottom2 .nspArtPage:nth-child(1) {}
will address first slide holder and:
- Code: Select all
#gkBottom2 .nspArtPage:nth-child(1) h4 {}
will address header inside of 1rst slide.