how to remove the date

GK User
Sat Aug 20, 2011 7:37 am
how to remove the date in the module Gavick Image Show?
User avatar
Fresh Boarder

GK User
Wed Aug 31, 2011 10:26 am
please, we need an answer!!!!
User avatar
Fresh Boarder

GK User
Wed Aug 31, 2011 3:38 pm
Okay, I try to tell you my solution for the problem. Maybe not the best one, but it works.

First open the gk_stuff.css

Search for
Code: Select all
.gk_is_wrapper-template .gk_is_text_title span:first-child {
    border-right: 1px solid #4C4C4C;
    color: #9F9F9F;
    display: block;
    float: left;
    font-size: 11px;
    height: 20px;
    line-height: 20px;
    margin: 17px 18px 0 0;
    padding: 0 18px;
}


You could change this directly in the gk_stuff.css or you put the following code into the override.css (you have to enable this first before you can use it). Simply change the display:block to display:none

Change the code to
Code: Select all
.gk_is_wrapper-template .gk_is_text_title span:first-child {
    border-right: 1px solid #4C4C4C;
    color: #9F9F9F;
    display:none;
    float: left;
    font-size: 11px;
    height: 20px;
    line-height: 20px;
    margin: 17px 18px 0 0;
    padding: 0 18px;
}


Now the date ist gone, but the Test is stucking on the left side. You need to set some margins.

Search the following code in the gk_stuff.css
Code: Select all
.gk_is_wrapper-template .gk_is_text_title a {
    color: #FFFFFF;
    display: block;
    float: left;
    font-size: 24px;
    height: 24px;
    line-height: 24px;
    margin-top: 16px;
   


Again, you can make your changes directly there or in an override.css. Add a margin-left like this:
Code: Select all
.gk_is_wrapper-template .gk_is_text_title a {
    color: #FFFFFF;
    display: block;
    float: left;
    font-size: 24px;
    height: 24px;
    line-height: 24px;
    margin-top: 16px;
    margin-left: 16px;


Now you´re date should be gone - if you understood my poor english :)

Greets,
Stephanie
User avatar
Senior Boarder

GK User
Wed Aug 31, 2011 3:51 pm
This is great!!! Thank so much!!
User avatar
Fresh Boarder

GK User
Wed Aug 31, 2011 4:01 pm
Another question, please look at this: http://www.quimtex-devoto.com.ar/martinbuzzi/
and tell me please how to remove the date in the second gallery

sorry for my englich too, I´m from Argentina, and my native language is spanish
User avatar
Fresh Boarder

GK User
Thu Sep 01, 2011 10:19 am
Hmmmh, that´s hard to find.

If it is a css-problem, it should be in the modules/mod_news_pro_gk4/interface/css/style.portal.mode.2.css
But I don´t know where :(

Did you try to remove date in the backend? Maybe there could be a setting in the news_show_pro-adminarea. Maybe it´s not to be solved via css, but with different settings

Soory that I couldn´t find anything
User avatar
Senior Boarder

GK User
Wed Sep 14, 2011 11:14 pm
You just change the "d%-m%" etc to * or something else.
User avatar
Fresh Boarder

GK User
Wed Sep 14, 2011 11:49 pm
if its the dates in news pro GK4 module which is just under the slideshow

add this in your override.css for .nsp date { display: none; } so it hides the date div alltogether
so code looks like
Code: Select all
 .nsp_main_portal_mode3 .nsp_title_tab .nsp_date {
    border-right: 1px solid #E5E5E5;
    color: #B3B6B7;
    float: left;
    font-size: 11px;
    height: 12px;
    line-height: 12px;
    margin-top: 15px;
    padding: 0 20px;
    display: none;
}
User avatar
Platinum Boarder


cron