[ SOLVED] Remove date Title

Free responsive Joomla 2.5 and 3.x module to present your content with easy and intuitive way.
Rate this topic: Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.
GK User
Fri Nov 18, 2011 9:35 am
I am using pro GK4 news module on a site with Joomla 1.5. I'm using the Portal News Slide Show Mode. I need to remove the option date in the title of the article. How can I do this?
User avatar
Fresh Boarder

GK User
Fri Nov 18, 2011 10:16 am
Find File: /modules/mod_news_pro_gk4/interface/css/style.portal.mode.2.css
Find Line: 20 Which is below
Code: Select all
.nsp_main_portal_mode2 .nsp_bottom_interface .nsp_art_headline .nsp_info { color: #b3b6b7; float: left; font-size: 11px; border-right: 1px solid #eaeaea; margin:18px 0; height:12px; line-height:12px; padding-right:10px; margin-right:10px; }

Add opacity: 0; to turn off visibility so it doesnt move Title to left hand side or
Add display: none; to disable it but this will move Title to left handside.

With opacity:0
Code: Select all
.nsp_main_portal_mode2 .nsp_bottom_interface .nsp_art_headline .nsp_info { color: #b3b6b7; float: left; font-size: 11px; border-right: 1px solid #eaeaea; margin:18px 0; height:12px; line-height:12px; padding-right:10px; margin-right:10px; opacity:0 }

With display: none
Code: Select all
.nsp_main_portal_mode2 .nsp_bottom_interface .nsp_art_headline .nsp_info { display:none; }
User avatar
Platinum Boarder

GK User
Fri Nov 18, 2011 10:46 am
Thank you
User avatar
Fresh Boarder


cron