How Do I Remove The Current Date Showing?

GK User
Fri Feb 10, 2012 7:13 am
Seems to be my lucky day as it doesn't seem I can figure anything out!

Can anyone please tell me how to remove the current date that shows on articles? As far as I am aware I have already hidden everything else in the article options. Could there be a setting somewhere else for this that I have missed?

See screen shot below...

dateproblem.png
User avatar
Fresh Boarder

GK User
Fri Feb 10, 2012 2:05 pm
Hi.
Please take a look on this topic:
Code: Select all
 https://www.gavick.com/support/forums/104/13397.html
User avatar
Platinum Boarder

GK User
Tue Feb 14, 2012 3:23 pm
k2.css file (change the itemDate to this)
Code: Select all
.itemDate {
display: none;
float: left;
padding: 16px 0 0;
width: 67px;
height: 51px;
line-height: 18px;
text-align: center;
background: url('../images/date.png') no-repeat 0 0;
}


Edit by NormanUK: Wrapped css code in [code] tags...
User avatar
Fresh Boarder

GK User
Tue Feb 14, 2012 3:38 pm
Hi jhachkowski,

When adding or editing css styles please try to use override.css file so in future when you update your template you don't loose your custom css styles/changes. You can just copy and replace override.css file.

So to make it easier you can add below code in templates/gk_boutique/css/override.css file then enable CSS Override feature from Template Settings > Advanced Settings > Css Override " On ".

Code: Select all
/* Hide Date in Articles */
.itemDate { display:none; }


See you around...
User avatar
Platinum Boarder


cron