omojesu wrote:Is overide.css in the module files itself? I am using this extension with a third-party template and will like to remove the data column as well for the portal mode - accordion news layout.
thanks
Override.css is a feature of GK Templates and it is not available in module itself. What you can do is edit modules css file and change css itself.
Going by Version 2.9 joomla 1.7 which is latest version.
Find File: /modules/mod_news_pro_gk4/interface/css/style.portal.mode.3.css
Find Line: 6
Which is below
- Code: Select all
.nspMainPortalMode3 .nspTitleTab .nspDate { float: left; font-size: 11px; color: #b3b6b7; padding: 0 20px; border-right: 1px solid #e5e5e5; line-height:12px; height: 12px; margin-top: 15px; }
Replace it with below
- Code: Select all
.nspMainPortalMode3 .nspTitleTab .nspDate { display:none ; }
This will hide Date Column in NSP Portal Mode 3 Accordion.
See you around...