NSP News show header

GK User
Tue Jan 29, 2013 10:01 pm
Is there a way to move the NSP "Latest News" module's header to the bottom of the image? It keeps cutting off the heads in my photos. If I move the header text and date to the bottom, it will show nicely. Is there a way to do this?
User avatar
Fresh Boarder

Konrad M
Wed Jan 30, 2013 8:55 am
Hi,
please go to css/gk.stuff.css and find:
Code: Select all
div.header .nspHeader {
position: absolute;
top: 0;
left: 0;
-webkit-border-radius: 3px 3px 0 0;
-moz-border-radius: 3px 3px 0 0;
border-radius: 3px 3px 0 0;
background: #333;
padding: 0 0 12px 0;
z-index: 1;
margin: 0 !important;
text-transform: uppercase;
}

and change it to:
Code: Select all
div.header .nspHeader {
position: absolute;
bottom: 0;
left: 0;
-webkit-border-radius: 0 0 3px 3px;
-moz-border-radius: 0 0 3px 3px;
border-radius: 0 0 3px 3px;
background: #333;
padding: 0 0 12px 0;
z-index: 1;
margin: 0 !important;
text-transform: uppercase;
}
User avatar

GK User
Thu Jan 31, 2013 6:02 pm
OH My gosh thank you so much for your help with this! Saved so much time and effort to make this adjustment.

It works perfectly! Thank you!
User avatar
Fresh Boarder


cron