MyBB Community Forums

Full Version: Replacing page/forum main title
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
No matter the theme I use, including the default theme, the main title of my forums is displayed (text) between the header and the actual categories and forums - left aligned.

Can I replace this text with code of my own? I have a scrolling ticker in mind... If so, where does the code exist for this simple one line of text.

Thanks in advance.
I think you mean the navigation/breadcrumb

Go to Templates -> Index
add id="index" to the body tag so it looks like this:
<body id="index">
then add following line to a global CSS file:
#index .navigation { display: none;}

To add something else there you can add whatever you want below the {$header}
(2014-01-27, 12:55 AM)maniacmusic Wrote: [ -> ]I think you mean the navigation/breadcrumb

Go to Templates -> Index
add id="index" to the body tag so it looks like this:
<body id="index">
then add following line to a global CSS file:
#index .navigation { display: none;}

To add something else there you can add whatever you want below the {$header}

Thanks for the reply.

This didn't seem to work. I'm using 'The Cure' theme, and have attached an image with the area I'd like to replace with my own code circled.