- Posts: 2
COMMUNITY FORUM
How to remove the sidebar on the left of article ?
- helder
-
Topic Author
- Offline
- New Member
Less
More
11 years 8 months ago #117634
by helder
How to remove the sidebar on the left of article ? was created by helder
Dear Friends,
I tried everything and spent hours trying to work out a solution... and I'm sure it's something basic :(
On my K2 articles, I have a section on the left side (main page) that displays the date of creation, the user with the avatar etc...
I managed to hide all these details... but i still have an empty space there.
I would like to remove it... any idea ?
Here is the website: www.creacontacts.fr/creacontacts
Thanks so much !
H
I tried everything and spent hours trying to work out a solution... and I'm sure it's something basic :(
On my K2 articles, I have a section on the left side (main page) that displays the date of creation, the user with the avatar etc...
I managed to hide all these details... but i still have an empty space there.
I would like to remove it... any idea ?
Here is the website: www.creacontacts.fr/creacontacts
Thanks so much !
H
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
Less
More
- Posts: 15920
11 years 8 months ago #117635
by Krikor Boghossian
Replied by Krikor Boghossian on topic Re: How to remove the sidebar on the left of article ?
Remove the margin-left property from div.catItemView .
It is in k2.css
It is in k2.css
Please Log in or Create an account to join the conversation.
- helder
-
Topic Author
- Offline
- New Member
Less
More
- Posts: 2
11 years 8 months ago #117636
by helder
Replied by helder on topic Re: How to remove the sidebar on the left of article ?
Hello dear,
thank you very much for your answer...
I first had :
div.catItemView {
padding: 4px 4px 15px;
margin-left: 200px;
margin-bottom: 20px;
border-bottom: 2px solid #EEEEEE;
}
Then, following your note, I tried:
div.catItemView {
padding: 4px 4px 15px;
margin-bottom: 20px;
border-bottom: 2px solid #EEEEEE;
}
I also tried:
div.catItemView {
padding: 4px 4px 15px;
margin-left: 0px;
margin-bottom: 20px;
border-bottom: 2px solid #EEEEEE;
}
But I still have the freaking empty space :(
Help please :)
thank you very much for your answer...
I first had :
div.catItemView {
padding: 4px 4px 15px;
margin-left: 200px;
margin-bottom: 20px;
border-bottom: 2px solid #EEEEEE;
}
Then, following your note, I tried:
div.catItemView {
padding: 4px 4px 15px;
margin-bottom: 20px;
border-bottom: 2px solid #EEEEEE;
}
I also tried:
div.catItemView {
padding: 4px 4px 15px;
margin-left: 0px;
margin-bottom: 20px;
border-bottom: 2px solid #EEEEEE;
}
But I still have the freaking empty space :(
Help please :)
Please Log in or Create an account to join the conversation.
- Alfonso
-
- Offline
- New Member
Less
More
- Posts: 5
11 years 7 months ago #117637
by Alfonso
Replied by Alfonso on topic Re: How to remove the sidebar on the left of article ?
Hello
You can try:
Change
#k2Container.itemView {
padding: 5px 0 10px 200px;
}
to:
#k2Container.itemView {
padding: 5px 0 10px 0;
}
regards
Alfonso
You can try:
Change
#k2Container.itemView {
padding: 5px 0 10px 200px;
}
to:
#k2Container.itemView {
padding: 5px 0 10px 0;
}
regards
Alfonso
Please Log in or Create an account to join the conversation.