The new vBulletin 6.1.5 release introduced a great feature called the Start a Topic Module. This module adds a “Start a New Topic” button that allows users to easily create new discussions in any available forum channel. Because it’s a module, you can place it anywhere on your pages — even site-wide — by adding it to a global section.
This modification takes this new feature a step further:

To do this, simply drag and drop a Start a Topic module into a global section in Sitebuilder and then copy and paste the below custom CSS in css_additional.css template in each of the active themes your forum is using:
You may adjust some values according to your preferences.
If you find this free mod helpful, please consider supporting it with a donation.
This modification takes this new feature a step further:
- It places the Start a New Topic button in a global section near the footer.
- The button is sticky (floating), so it stays visible as users scroll.
- The button label has been simplified to a clean “+” icon for a modern, minimal look.
To do this, simply drag and drop a Start a Topic module into a global section in Sitebuilder and then copy and paste the below custom CSS in css_additional.css template in each of the active themes your forum is using:
Code:
.js-start-new-topic-wrapper {
position: fixed;
bottom: 20px; /* adjust the position as needed */
right: 20px; /* adjust the position as needed */
z-index: 99; /* adjust value as needed */
}
.js-start-new-topic {
font-size: 0 !important;
border-radius: 50%;
width: 65px; /* adjust the size as needed */
height: 65px; /* adjust the size as needed */
}
.js-start-new-topic::before {
content: '+';
font-size: 4rem; /* adjust the font size as needed */
display: inline-block;
width: 100%;
font-weight: normal;
}
.js-start-new-topic .fa-plus {
display: none;
}
.js-start-new-topic .fa-plus::before {
text-align: center;
}
If you find this free mod helpful, please consider supporting it with a donation.





Comment