Go Back   vb.org Archive > vBulletin 4 Discussion > vB4 Design and Graphics Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 12-27-2010, 09:01 PM
maryx maryx is offline
 
Join Date: Jan 2006
Posts: 116
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default How to remove little icons on the widgets

The widgets automatically put an annoying little icon in the title row of each widget on my Home page. (They are attached)

How can I edit them out? What is the complete path to the image file? They are not in cms/images/
I can put in something nicer.

Fount it! Just by inspecting the element. It is in images/siteicons
Reply With Quote
  #2  
Old 12-27-2010, 09:16 PM
TheLastSuperman's Avatar
TheLastSuperman TheLastSuperman is offline
Senior Member
 
Join Date: Sep 2008
Location: North Carolina
Posts: 5,844
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by maryx View Post
The widgets automatically put an annoying little icon in the title row of each widget on my Home page. (They are attached)

How can I edit them out? What is the complete path to the image file? They are not in cms/images/
I can put in something nicer.

Fount it! Just by inspecting the element. It is in images/siteicons
Just don't delete them otherwise in Firefox it will look fine however in IE you'll see little red X's .

So edit them (images) OR find the templates that image code is in and comment it out using:

Code:
<vb:comment> HIDES THIS CODE INSIDE ETC </vb:comment:>
Reply With Quote
  #3  
Old 12-27-2010, 09:50 PM
maryx maryx is offline
 
Join Date: Jan 2006
Posts: 116
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

What I did was replace each image with another image that I preferred (gave them the same names as the originals.) They replaced OK, but the old images are still showing up. The image path I used is images/site_icons

I don't think this is the correct path, as php wasn't in there to be replaced.

Any help here? Thanks!
Reply With Quote
  #4  
Old 12-27-2010, 10:10 PM
TheLastSuperman's Avatar
TheLastSuperman TheLastSuperman is offline
Senior Member
 
Join Date: Sep 2008
Location: North Carolina
Posts: 5,844
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by maryx View Post
What I did was replace each image with another image that I preferred (gave them the same names as the originals.) They replaced OK, but the old images are still showing up. The image path I used is images/site_icons

I don't think this is the correct path, as php wasn't in there to be replaced.

Any help here? Thanks!
Suite means some images are in a cms folder and some in a blog folder... for example if it's the CMS here is the little speech bubbles:

Code:
images/cms/widget-forum.png
So you need to overwrite those files, remember you can view all the folders and files fromt he vbulletin .zip file by extracting it to your local hard drive/desktop etc etc find the images there easily then navigate to each folder on your server or in ftp etc then overwrite .

Edit: Ohh and right-click and view the image or it's location etc to see where it is!
Reply With Quote
  #5  
Old 01-03-2011, 12:57 AM
Baf_Jams Baf_Jams is offline
 
Join Date: Mar 2008
Location: Derby UK
Posts: 106
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I right-clicked and viewed the image at it's location and then replaced them via FTP with a small clear gif
(gave them the same names as the originals.)

Small clear gif found from google
Reply With Quote
  #6  
Old 01-03-2011, 12:38 PM
maryx maryx is offline
 
Join Date: Jan 2006
Posts: 116
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks for everyone's help, I have finally got rid of those annoying icons and put something nicer in their place.
Reply With Quote
  #7  
Old 06-08-2011, 06:35 PM
bajrice bajrice is offline
 
Join Date: Dec 2010
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Code:
check this,... its late but it helps ;)

search this,...

vbcms_widget_execphp_page   ----> php
vbcms_widget_static_page    ----> html


Remove this,... in both

<img src="{vb:stylevar imgdir_siteicons}/XXX.png" alt="" />
Reply With Quote
  #8  
Old 10-19-2011, 07:18 AM
pantani's Avatar
pantani pantani is offline
 
Join Date: Dec 2007
Location: Belgium
Posts: 126
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by bajrice View Post
Code:
check this,... its late but it helps ;)

search this,...

vbcms_widget_execphp_page   ----> php
vbcms_widget_static_page    ----> html


Remove this,... in both

<img src="{vb:stylevar imgdir_siteicons}/XXX.png" alt="" />
Perfect
Thanks for helping
Reply With Quote
  #9  
Old 10-19-2011, 02:50 PM
Theme Tempest's Avatar
Theme Tempest Theme Tempest is offline
 
Join Date: Jul 2011
Location: United States, Kentucky
Posts: 25
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

An easier way is to add this to your additional.css template:
Code:
.cms_widget_header h3 img {
    display: none;
}
Of course, the above is only if you want to hide them altogether and not replace them. I personally think images in the widgets header look too cluttered, no matter what you put there.
Reply With Quote
4 благодарности(ей) от:
nhawk, paulket, ruger, steve k.
  #10  
Old 02-09-2012, 12:05 AM
steve k. steve k. is offline
 
Join Date: Dec 2011
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Theme Tempest View Post
An easier way is to add this to your additional.css template:
Code:
.cms_widget_header h3 img {
    display: none;
}
Of course, the above is only if you want to hide them altogether and not replace them. I personally think images in the widgets header look too cluttered, no matter what you put there.
Can this also be done to the Blocks in the forum?
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 01:30 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04690 seconds
  • Memory Usage 2,284KB
  • Queries Executed 14 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (6)bbcode_code
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (4)post_thanks_box_bit
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete