The Arcive of vBulletin Modifications Site. |
|
|
#1
|
|||
|
|||
|
I would like to know how to delete the following widget icon, from appearing on my widgets?
Does anybody know? Thanks!
|
|
#2
|
|||
|
|||
|
Template edit for every widget where you want to remove that picture.
Templates are called vbcms_widget_ and so on. For example the calendar widget, find: Code:
<div class="cms_widget_header">
<h3><img src="{vb:stylevar imgdir_misc}/event.png" alt="" /> {vb:raw widget_title}</h3>
</div>
Code:
<img src="{vb:stylevar imgdir_misc}/event.png" alt="" />
|
|
#3
|
|||
|
|||
|
Totally agree with your last sentence, totally pointless! But thanks I will start looking for those codes! Thanks so much!
![]() Quote:
Do you know if it is possible to delete the widget title from appearing in the website as well? Thanks! |
|
#4
|
|||
|
|||
|
if you want the widget title to disapear just delete the first code box completely out of those templates.
|
|
#5
|
|||
|
|||
|
|
|
#6
|
|||
|
|||
|
Thanks for this! That was driving me nuts!
|
|
#7
|
||||
|
||||
|
I removed this as well when I had the CMS up, I have no idea either why vb thought we'd want those icons there..
I can see maybe it being helpful for the admins to see but the average user doesn't need to know if it's an HTML block or a PHP one |
|
#8
|
|||
|
|||
|
Lot simplier to just tuck display none in the css like this >
Code:
/* Seti added: Display none command to kill widget title */
.cms_widget_header h3 {
display: none;
color: {vb:stylevar sidebar_header_color};
background:transparent none;
padding: {vb:stylevar vbcms_widget_header_padding};
outline:none;
font-size:{vb:stylevar sidebar_header_fontSize};
font-weight: bold;
}
/* Seti added: Display none command to kill widget icons */
.cms_widget_header h3 img {
display: none;
position: relative;
top: 2px;
}
|
![]() |
|
|
| X vBulletin 3.8.12 by vBS Debug Information | |
|---|---|
|
|
More Information |
|
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|