Hello I would like to see how I can disable the - thingy that hides things. I have an image for demonstration: [
attachment=30535]
In forumbit_depth1_cat template remove:
<div class="expcolimage"><img src="{$theme['imgdir']}/{$expcolimage}" id="cat_{$forum['fid']}_img" class="expander" alt="{$expaltext}" title="{$expaltext}" /></div>
you can add below css style code at the bottom of
global.css (edit through admin panel and edit in advanced mode)
.expcolimage {display: none!important}
hard refresh your browser (eg. press CTRL + F5) on forum index page after
saving changes to global.css
Yeah .M. solution is great don't have to mess with your template simply add the CSS
marcus123 it worked, BUT one problem: [
attachment=30537]
.m. how do I edit that and what advanced mode??
By the way, I am using Advanced Side box Plugin for the side box.
Add the solution posted by .M. to your global.css and that will hide it:
http://community.mybb.com/thread-148016-...pid1048225
P.S. Change your message box margin because it's just too much
in your global.css find
.gwarn
and change
margin-left: 80%;
to
margin-left: 75%;
How do I access global.css?
(2013-11-17, 09:39 PM)MF1324 Wrote: [ -> ]How do I access global.css?
Admin CP -> Templates&Style -> Themes -> YOUR Theme -> Editing global.css (in Advanced Mode) - more info
HERE