How to remove right 3 columns (counts)

If you have questions about using mojoPortal, you can post them here.

You may want to first review our site administration documentation to see if your question is answered there.

This thread is closed to new posts. You must sign in to post in the forums.
2/10/2012 5:35:04 PM
Gravatar
Total Posts 383
Thanks Squire Dude

How to remove right 3 columns (counts)

Hi,

I have looked everywhere and it seems that there is no method (check box) to turn off the right 3 columns from the forum.  Does anyone know how to achieve this?

I think it is a CSS job but I am really bad at it.

I tried ".fthreadcount { visibility:hidden; }" which only took the test value out!

Thanks

2/10/2012 5:50:53 PM
Gravatar
Total Posts 383
Thanks Squire Dude

Re: How to remove right 3 columns (counts)

Hi,

Well believe it or not I actually solved a CSS issue on my own... well almost!

The solution is as follows...

/* To hide the 3 right columns in the forum - Thread Count,
* Post Count, & Post Date
*/

.fthreadcount {
display: none;
}

.fpostcount {
display:none;
}

.fpostdate {
display:none;
}

2/11/2012 12:32:30 PM
Gravatar
Total Posts 2239

Re: How to remove right 3 columns (counts)

Hi Phill,

Good on ya for figuring it out on your own!

You could simplify the CSS a bit by using the following:

.fthreadcount,
.fpostcount,
.fpostdate {
    display:none;
}

HTH,
Joe D. 

2/11/2012 1:20:42 PM
Gravatar
Total Posts 383
Thanks Squire Dude

Re: How to remove right 3 columns (counts)

Hi Joe D,

Thanks, but for now I think I'll keep doing it the long way till I get more comfortable with it all.  Still a mystery where and how most of it works... :-(

Thanks

2/11/2012 1:26:01 PM
Gravatar
Total Posts 2239

Re: How to remove right 3 columns (counts)

For a lot of people, CSS is a mystery until they understand selectors. Anytime I am training someone on CSS, the first thing I have them read is Joe Audette's "CSS - Its All About Understanding Selectors" article. This article really does help with getting a grasp on CSS.

Hope it helps,
Joe D. 

You must sign in to post in the forums. This thread is closed to new posts.