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