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; }