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.
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
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;}
/* To hide the 3 right columns in the forum - Thread Count,* Post Count, & Post Date*/
.fthreadcount {display: none;}
.fpostcount {display:none;}
.fpostdate {display:none;}
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.
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... :-(
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.