Remove 'aside' from specific page

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Sun Mar 03, 2013 2:22 pm
Reply with quote
Report this post
Hello

I have tried everything to remove the date column 'aside' from my articles. I found the code below however I want it to be page specific. The code below works but I've tried everything to make it specific to my page.

Code: Select all
aside {
    display: none !important;
    position: relative;
    width: 118px;
    text-align: right;
}

aside + .k2box {
    margin-left: 0;
}


My page is currently offline. I have attached an image with my firebug open.

Image

Can anyone help please?

Thank you
User avatar
Junior Boarder

GK User
Mon Mar 04, 2013 4:21 am
Reply with quote
Report this post
You can achieve that by assigning a pagesuffix for your chosen menu items. Please see following link on how to setup pagesuffix for your menu items.

https://www.gavick.com/forums/therealde ... pagesuffix

Then if you have used for an example pagesuffix "mypagesuffix" then your css code would be as below.

Code: Select all
.mypagesuffix aside {
    display: none !important;
    position: relative;
    width: 118px;
    text-align: right;
}

.mypagesuffix aside + .mypagesuffix .k2box {
    margin-left: 0;
}


Let us know if you need further help on this.

See you around...
User avatar
Platinum Boarder

GK User
Mon Mar 04, 2013 12:50 pm
Reply with quote
Report this post
That's absolutely perfect! I'm going to be able to do so much more now.

Thank you!
User avatar
Junior Boarder

GK User
Wed Mar 06, 2013 4:52 am
Reply with quote
Report this post
No problem at all, see you around...
User avatar
Platinum Boarder


cron