Channel Icons?
Collapse
This topic is closed.
X
X
-
Tags: None
-
-
There is nothing in the default software that would do this.MARK.B
vBulletin Support
------------
My Unofficial vBulletin 6.0.0 Demo: https://www.talknewsuk.com
My Unofficial vBulletin Cloud Demo: https://www.adminammo.comComment
-
Could they be added with HTML in the channel title?
Older forum software allows for this and also for auto-deleting topics of a certain age (great for a Classified Ad channel. Maybe these could be added in the future.
ThanksComment
-
In theory you can use html in the channel title yes.
There can be issues with this though....mainly that the icons may appear in places you don't want them to (such as the breadcrumb bar). Also the formatting is difficult to get right so it's aligned correctly in all screen sizes.
This is heading into the realms of support though, which we can only provide when you have a license.MARK.B
vBulletin Support
------------
My Unofficial vBulletin 6.0.0 Demo: https://www.talknewsuk.com
My Unofficial vBulletin Cloud Demo: https://www.adminammo.comComment
-
It's possible using custom css and icons.
https://www.vbulletin.com/forum/foru...icons-any-size (read the entire thread as the first post might not contain the latest CSS)Comment
-
It's possible using custom css and icons.
https://www.vbulletin.com/forum/foru...icons-any-size (read the entire thread as the first post might not contain the latest CSS)
I just purchased a license, so I'll continue this in another forum.
Thanks everyone for the help.Comment
-
Comment
-
Look at my attached graphic, from our current "old, outdated" forum.
The cabins on the left do what yours does. Grey cabin=no new posts Colored cabin=new posts.
I'm talking about the little icons to the RIGHT of the cabins (tent, pot, girl). Each forum has a different one.
Comment
-
I see. I was the one who was confused
You can use HTML in the title. As Mark said, you may have issues where the icons appear in places you don't want them to. The solution to that is make the icons as hidden by default using CSS. Then on the main page, show them using CSS selector that is specific only to the main page.Comment
-
Another solution (which is better than my initial solution) is to use this CSS to add the forum icon.
Code:#forumXXXXX .forum-title:before { content: ''; width: 30px; /* width of icon */ height: 30px; /* height of icon */ display: inline-block; background: transparent url('path/to/the/icon.png') no-repeat; margin-right: 5px; float: left; } #forumXXXXX .forum-title { line-height: 30px; /* height of icon */ } #forumXXXXX .forum-desc { margin-left: 59px; /* width of icon + right margin of icon + 24 (you may need to adjust it accordingly) */ }
You have to repeat the above CSS for each forum channel.
This is only for desktop or bigger screens. You may need to tweak it and add more CSS for mobile.Comment
-
-
I'll close this thread now, as we can only provide this type of help when you have a vBulletin license.MARK.B
vBulletin Support
------------
My Unofficial vBulletin 6.0.0 Demo: https://www.talknewsuk.com
My Unofficial vBulletin Cloud Demo: https://www.adminammo.comComment
Related Topics
Collapse
-
by mlott132Noticed after VB5 upgrade that the new post icons choices are not displaying. When you click on new topic to the right of the title is an icon choice. By default it shows "no icon", when I click...2 Photos
-
Channel: Support Issues & Questions
Tue 27 Feb '18, 10:36am -
Comment