Get rid of titel on mod Tabs GK5

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Tue Sep 23, 2014 2:35 pm
Reply with quote
Report this post
Hello,

I would like to know how can I have the titles out of the picture and have it on the article itself.

Here is my website that is not finished yet: http://www.blocktradingeurope.com/newsite/

Thank you in advance.
User avatar
Expert Boarder

GK User
Tue Sep 23, 2014 2:40 pm
Reply with quote
Report this post
Hello,

Please try to remove the following code from the js/gk.scripts.js file:

Code: Select all
// NSP suffix showcase
   jQuery('.showcase').each(function(i, wrapper) {
      wrapper = jQuery(wrapper);
      if(wrapper.find('.nspImageWrapper').length > 0 && wrapper.find('.nspHeader').length > 0) {
         wrapper.find('.nspArt').each(function(i, art) {
            jQuery(art).find('.nspImageWrapper').append(jQuery(art).find('.nspHeader'));
         });
      }
   });
   
User avatar
Administrator

GK User
Tue Sep 23, 2014 4:03 pm
Reply with quote
Report this post
Hello Dziudek,

Many thanks, It works fine.

Since the header text colour is dark I've changed the colour to white.

file: gk.stuff.css
Line: 102

Original

.nspArt h4.nspHeader {
color: #111;
font-size: 15px;
font-weight: 600;
line-height: 1.2;
margin: 0;
padding: 10px 0;
text-transform: none;
}

Changed

.nspArt h4.nspHeader {
color: #FFF;
font-size: 15px;
font-weight: 600;
line-height: 1.2;
margin: 0;
padding: 10px 0;
text-transform: none;
}


I hope this can help any other in the future
User avatar
Expert Boarder


cron