View Full Version : Does anyone know how to delete the little widget icon on CMS?
liberalgrounds
07-25-2011, 11:58 AM
I would like to know how to delete the following widget icon, from appearing on my widgets? https://vborg.vbsupport.ru/external/2011/07/38.jpg
Does anybody know? Thanks!:)
Mooff
07-25-2011, 12:28 PM
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:
<div class="cms_widget_header">
<h3><img src="{vb:stylevar imgdir_misc}/event.png" alt="" /> {vb:raw widget_title}</h3>
</div>
remove this code:
<img src="{vb:stylevar imgdir_misc}/event.png" alt="" />
P.S.: I have no idea why the vb4 design team thought it would make any sense to show the users what widget is a html widget and what widget is a php widget. Really, no idea at all.
liberalgrounds
07-25-2011, 12:36 PM
Totally agree with your last sentence, totally pointless! But thanks I will start looking for those codes! Thanks so much!:D
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:
<div class="cms_widget_header">
<h3><img src="{vb:stylevar imgdir_misc}/event.png" alt="" /> {vb:raw widget_title}</h3>
</div>
remove this code:
<img src="{vb:stylevar imgdir_misc}/event.png" alt="" />
P.S.: I have no idea why the vb4 design team thought it would make any sense to show the users what widget is a html widget and what widget is a php widget. Really, no idea at all.
--------------- Added 1311601255 at 1311601255 ---------------
Do you know if it is possible to delete the widget title from appearing in the website as well? Thanks!
Mooff
07-25-2011, 12:49 PM
if you want the widget title to disapear just delete the first code box completely out of those templates.
liberalgrounds
07-25-2011, 12:51 PM
Excellent! Thanks again, one more question!
https://vborg.vbsupport.ru/showthread.php?t=267396
if you want the widget title to disapear just delete the first code box completely out of those templates.
CouponWCents
08-31-2011, 02:03 PM
Thanks for this! That was driving me nuts!
Brandon Sheley
08-31-2011, 02:35 PM
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
setishock
08-31-2011, 03:50 PM
Lot simplier to just tuck display none in the css like this >
/* 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;
}
Lot cleaner. http://animeappeal.com/content.php?styleid=110
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.