Hi all,
I want to hide all author details in the K2 module. Once i hide all options it keeps on giving this details (see image). How can i hide/delete that specific information? Thank you.
               
                
               
          Pawel F wrote:Are you logged as a super administrator?
Please log out and check as a normal registration user.
p.s.
K2 has two or three modules, which one you are talking about.
You want to hide name of logged user or/and social buttons?
.itemView .itemAuthorBlock,
.itemView .itemAuthorContent {
    display:none;
}
/*.itemAuthorData {
   overflow: hidden;
   margin: 0 0 36px;
   padding: 16px;
   background: #f9f9f9;
}
.itemAuthorData h3 {
   font-size: 20px;
   font-weight: 400;
   color: #242424;
   margin: 0 0 12px
}
.itemAuthorData a { color: #242424 !important}
.itemAuthorData .itemAuthorContent {
   
   margin: 0;
}
.itemAuthorContent {
   margin: 0 0 32px 0;
   overflow: hidden;
}
.itemAuthorContent ul li {
   
   line-height: 1.6;
   padding: 5px 0 0 24px;
   
}*/pvdm wrote:Please try add to override.css
- Code: Select all
 .itemView .itemAuthorBlock,
.itemView .itemAuthorContent {
display:none;
}
And enable override css.
After that comment out k2.css
@320
- Code: Select all
 /*.itemAuthorData {
overflow: hidden;
margin: 0 0 36px;
padding: 16px;
background: #f9f9f9;
}
.itemAuthorData h3 {
font-size: 20px;
font-weight: 400;
color: #242424;
margin: 0 0 12px
}
.itemAuthorData a { color: #242424 !important}
.itemAuthorData .itemAuthorContent {
margin: 0;
}
.itemAuthorContent {
margin: 0 0 32px 0;
overflow: hidden;
}
.itemAuthorContent ul li {
line-height: 1.6;
padding: 5px 0 0 24px;
}*/
