The Arcive of Official vBulletin Modifications Site.
It is not a VB3 engine, just a parsed copy!
Archives
Graphics
Styles
Mods
Articles
Forums
VBSupport
vb.org Archive
>
Search Forums
Search Results
User Name
Remember Me?
Password
FAQ
Community
Calendar
Today's Posts
Search
Community Links
Members List
Search Forums
Show Threads
Show Posts
Tag Search
Advanced Search
Найти все сообщения с благодарностями
Go to Page...
Page 1 of 7
1
2
3
>
Last
»
Showing results 1 to 25 of 159
Search took
0.01
seconds.
Search:
Posts Made By:
tgreer
Forum:
vB3 General Discussions
11-09-2006, 09:24 PM
Replies:
4
code box smaller?
Views:
1,120
Posted By
tgreer
Sorry, I wasn't clear: you could do it directly...
Sorry, I wasn't clear: you could do it directly in the template, yes. Or you could change the default value of "codeblockwidth", which you can set in the StyleManager. In AdminCP, click the Style...
Forum:
vB3 General Discussions
11-09-2006, 08:55 PM
Replies:
4
code box smaller?
Views:
1,120
Posted By
tgreer
Edit the bbcode_code template. Look for the...
Edit the bbcode_code template. Look for the "alt2" element, change the width within the style attribute.
Forum:
vBulletin.org Site Feedback
11-09-2006, 07:44 PM
Replies:
47
Threads Ignored?
Views:
4,305
Posted By
tgreer
This is an old discussion, and I doubt it will...
This is an old discussion, and I doubt it will ever be resolved. JelSoft directs everyone seeking help with customizing their forum, to this site. Yet this site is overwhelmingly focused on...
Forum:
vBulletin.org Site Feedback
07-04-2006, 02:21 PM
Replies:
11
Modifications
Views:
1,148
Posted By
tgreer
I agree completely with Alan. It's a false...
I agree completely with Alan. It's a false metric, and creates unreasonable expectations and even stratification/division of users into "classes". The user titles are based on number of "installs" -...
Forum:
vBulletin.org Site Feedback
06-28-2006, 12:37 PM
Replies:
1
Minor site usablity tweak.
Views:
793
Posted By
tgreer
Minor site usablity tweak.
This is minor, but it's a pet-peeve of mine: on the main portal page, the login fields don't have the focus when the page loads. It would be nice if the focus was set to the username field. That way...
Forum:
vB3 Programming Discussions
06-22-2006, 11:28 AM
Replies:
8
<tbody> vs. <table>
Views:
1,987
Posted By
tgreer
Try looking in FORUMHOME, as no doubt there is a...
Try looking in FORUMHOME, as no doubt there is a table inside of it, and that table uses the $forumhome_blah_blah_bit variable which CONTAINS the template you're editing.
Forum:
vB3 General Discussions
06-21-2006, 10:07 PM
Replies:
2
class="active" on <li>
Views:
801
Posted By
tgreer
Some JavaScript would work. Are you a JS coder?...
Some JavaScript would work. Are you a JS coder? The idea is to add "onclick=" to each of your tabs. Set it to a JavaScript function:
onclick=myFunction(this.id);
Your function now knows the id...
Forum:
vB3 General Discussions
06-21-2006, 09:52 PM
Replies:
11
URL Font Color
Views:
1,139
Posted By
tgreer
Notice this line of code: <a...
Notice this line of code:
<a href="http://videos.streetfire.net/video/BDC2E813-11CA-49DD-8040-D7B8B7826D52.htm" target="_blank"><font...
Forum:
vB3 General Discussions
06-21-2006, 09:04 PM
Replies:
11
URL Font Color
Views:
1,139
Posted By
tgreer
Start by seeing if you've defined any other...
Start by seeing if you've defined any other styles or style sheets anywhere else, like in your navbar or "Extra CSS" sections on THAT page.
If that isn't it, then disable ALL your plugins, and see...
Forum:
vB3 General Discussions
06-21-2006, 08:59 PM
Replies:
11
URL Font Color
Views:
1,139
Posted By
tgreer
I just tested on my forum. AdminCP ...
I just tested on my forum.
AdminCP
Styles & Templates
Style Manager --> All Style Options --> "GO"
Scroll down to "Body". Edit "font color" under each of these:
Normal Links CSS
Forum:
vB3 Programming Discussions
06-21-2006, 08:49 PM
Replies:
11
Custom Datamanagers
Views:
1,921
Posted By
tgreer
Alan, would you be willing to make this an...
Alan, would you be willing to make this an article? I've been exploring DataManagers on my own, so was pleased to see a public discussion on it here, and your excellent post did shed some light....
Forum:
vB3 General Discussions
06-21-2006, 08:44 PM
Replies:
11
URL Font Color
Views:
1,139
Posted By
tgreer
@burntire: you're mistaken. Go to "Edit all Style...
@burntire: you're mistaken. Go to "Edit all Style Options", and scroll down that page. Every main "box" dealing with a site element, has "Normal Links CSS", "Visited Links CSS", etc.
I believe you...
Forum:
vB3 Programming Discussions
06-21-2006, 08:17 PM
Replies:
17
Ajax Select Boxes
Views:
1,582
Posted By
tgreer
Ah. In that case, you probably wouldn't even need...
Ah. In that case, you probably wouldn't even need the DIV, you could toggle the CSS "display" on the TD element holding the SELECT. In fact, you could probably toggle it on the SELECT itself.
...
Forum:
vB3 Programming Discussions
06-21-2006, 07:57 PM
Replies:
17
Ajax Select Boxes
Views:
1,582
Posted By
tgreer
A "layer" is a deprecated Netscape-only element...
A "layer" is a deprecated Netscape-only element that will be cause validation errors with most DOCTYPES. The DOM version of a "layer" is a DIV, and DIVs are not exempt from the "IE select z-index"...
Forum:
vB3 Programming Discussions
06-21-2006, 07:27 PM
Replies:
17
Ajax Select Boxes
Views:
1,582
Posted By
tgreer
Yes, that's the well known IE bug with z-index...
Yes, that's the well known IE bug with z-index and select elements. It's been around for years, and I've been dealing with it in one fashion or another for years. A colleague and I worked out a...
Forum:
vB3 Programming Discussions
06-21-2006, 07:04 PM
Replies:
17
Ajax Select Boxes
Views:
1,582
Posted By
tgreer
Sounds like a form of the same error. Though it's...
Sounds like a form of the same error. Though it's horribly old-fashioned and won't work with popup blockers, instead of a DIV, could you use a Window.Open()?
Or, if IE is the problem, you can use...
Forum:
vB3 Programming Discussions
06-21-2006, 06:52 PM
Replies:
17
Ajax Select Boxes
Views:
1,582
Posted By
tgreer
It's close... though it has really bad...
It's close... though it has really bad functionality due to focus/blur issues and the keypress handler. It's hard to click again, start over, get focus back to type again. That's why my approach uses...
Forum:
vB3 Programming Discussions
06-21-2006, 06:15 PM
Replies:
17
Ajax Select Boxes
Views:
1,582
Posted By
tgreer
What you want is the missing "combobox" element....
What you want is the missing "combobox" element. HTML doesn't have one. One of the most popular articles on my site (http://www.tgreer.com/comboArticle.html) experiments with creating one. It works...
Forum:
vB3 Programming Discussions
06-21-2006, 02:30 PM
Replies:
11
Custom Datamanagers
Views:
1,921
Posted By
tgreer
What would the pros and cons, advantages and...
What would the pros and cons, advantages and disadvantages be?
Forum:
vBulletin.org Site Feedback
06-21-2006, 02:04 PM
Replies:
10
Question Regarding Moderation
Views:
1,261
Posted By
tgreer
The PM went to the moderators listed for the Site...
The PM went to the moderators listed for the Site Feedback forum. (Where oh where did my expectation of privacy go??)
I appreciate the detailed breakdown of the procedure you have in place. If a...
Forum:
vBulletin.org Site Feedback
06-21-2006, 01:41 PM
Replies:
10
Question Regarding Moderation
Views:
1,261
Posted By
tgreer
There were off-topic posts prior to it being...
There were off-topic posts prior to it being closed. But it's your policy, not mine - ignore it if you so choose.
Forum:
vBulletin.org Site Feedback
06-21-2006, 01:33 PM
Replies:
10
Question Regarding Moderation
Views:
1,261
Posted By
tgreer
Then could I direct your attention to this thread...
Then could I direct your attention to this thread (https://vborg.vbsupport.ru/showthread.php?t=119097)? Please delete the off-topic posts (https://vborg.vbsupport.ru/showthread.php?t=118404). I tried...
Forum:
vB3 General Discussions
06-20-2006, 10:48 PM
Replies:
2
Removing/changing colors in the editor
Views:
795
Posted By
tgreer
Hmm, I wonder... does removing the color box...
Hmm, I wonder... does removing the color box widgets from the editor prevent them from using the corresponding BBCODE? I would guess not. You might, and this is just an untested thought, use the...
Forum:
vB3 Design and Graphics Discussions
06-20-2006, 07:23 PM
Replies:
3
How do I do this (Advertisement)
Views:
1,114
Posted By
tgreer
You're welcome.
You're welcome.
Forum:
vBulletin.org Site Feedback
06-20-2006, 07:15 PM
Replies:
11
clarification on townhall
Views:
1,369
Posted By
tgreer
Presumably, "heightened excitement" is what these...
Presumably, "heightened excitement" is what these strict rules are designed to avoid. Until we get one that is about an actual issue, there isn't really much to get excited about.
Showing results 1 to 25 of 159
Page 1 of 7
1
2
3
>
Last
»
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
News and Announcements
News and Announcements
Mod of the Month
Official vB.com Announcements
vBulletin Pre-Sales Questions
vBulletin Styles and Graphics
vBulletin Styles
vBulletin 5.x Styles
vBulletin 3.8 Styles
vBulletin 3.8 Admin CP Styles
vBulletin 4.x Styles
vBulletin Graphic Sets
vBulletin Button Sets
vBulletin Smilie Sets
Miscellaneous Images
vBulletin Rank Sets
vBulletin Avatar Sets
vBulletin Status Icon Sets
vBulletin Article Depository
Read An Article
vBulletin 3 Articles
Programming Articles
General Articles
Management Articles
Graphics Articles
vBulletin Tips & Tricks
vBulletin 4 Articles
vBulletin 5 Connect Articles
Article Submissions
Submit New Article
vBulletin Modifications
vBulletin 5.x Modifications
vBulletin 5.x Products & Extensions
vBulletin 5.x Template Modifications
vBulletin 4.x Modifications
vBulletin 4.x Add-ons
vBulletin 4.x Template Modifications
vBulletin 3.8 Modifications
vBulletin 3.8 Add-ons
vBulletin 3.8 Template Modifications
Premium Modifications
vBulletin Open Source Products
Sphinx
Project Tools
ibProArcade
Archive
vB.org Archives
General
vB1 Hacks
Testing Zone
Board of the Month
Big Board Discussions
General Hosting/Server Discussions
Member Archives
vBulletin 2.x
vBulletin 2.x Full Releases
vBulletin 2.x Beta Releases
vBulletin 2.x Template Modifications
vBulletin 2.x Styles
vBulletin 2.x Admin CP Styles
vBulletin 3.0
vBulletin 3.0 Full Releases
vBulletin 3.0 Beta Releases
vBulletin 3.0 Template Modifications
vBulletin 3.0 Styles
vBulletin 3.0 Admin CP Styles
vBulletin 3.5
vBulletin 3.5 Add-ons
vBulletin 3.5 Template Modifications
vBulletin 3.5 Styles
vBulletin 3.5 Admin CP Styles
vBulletin 3.6
vBulletin 3.6 Template Modifications
vBulletin 3.6 Add-ons
vBulletin 3.6 Styles
vBulletin 3.6 Admin CP Styles
vBulletin 3.7
vBulletin 3.7 Add-ons
vBulletin 3.7 Template Modifications
vBulletin 3.7 Styles
vBulletin 3.7 Admin CP Styles
Premium Archives
uCash & uShop
vBadvanced CMPS
RPG Integration Hack
vBindex
vBgarage
Advanced Warning System (AWS)
vbArticles
vB Chat
vbBux / vbPlaza
ibProArcade Archive
vRewrite - SEOed URLs for vBulletin
Modification Graveyard
vBulletin 5 Connect Discussion
vB5 General Discussions
vB5 Programming Discussions
vB5 Design and Graphics Discussions
vBulletin 4 Discussion
vB4 General Discussions
vB4 Programming Discussions
vB4 Design and Graphics Discussions
vBulletin 3 Discussion
vB3 Programming Discussions
vB3 General Discussions
vB3 Design and Graphics Discussions
Community Discussions
Modification Requests/Questions (Unpaid)
Style and Graphics Requests (Unpaid)
Forum and Server Management
Community Central
vBulletin.org Site Feedback
Community Lounge
Community Reviews
All times are GMT. The time now is
12:53 AM
.
-- Default Style
---- Blue
------ Red
------ Green
------ Purple
Contact Us
-
Archive
-
Top
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X
vBulletin 3.8.12 by vBS Debug Information
Page Generation
0.03778 seconds
Memory Usage
2,051KB
Queries Executed
10
(?)
More Information
Template Usage:
(1)
ad_footer_end
(1)
ad_footer_start
(1)
ad_header_end
(1)
ad_header_logo
(1)
ad_navbar_below
(1)
footer
(1)
forumjump
(1)
gobutton
(1)
header
(1)
headinclude
(1)
navbar
(2)
navbar_link
(120)
option
(1)
pagenav
(1)
pagenav_curpage
(2)
pagenav_pagelink
(1)
post_thanks_navbar_search
(1)
search_results
(25)
search_results_postbit
(1)
spacer_close
(1)
spacer_open
(37)
threadbit_pagelink
Phrase Groups Available:
global
inlinemod
prefix
search
Included Files:
./
search.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_search.php
./includes/
functions_databuild.php
./includes/
functions_forumlist.php
./includes/
functions_misc.php
./includes/
functions_forumdisplay.php
./includes/
functions_bigthree.php
Hooks Called:
init_startup
init_startup_session_setup_start
init_startup_session_setup_complete
cache_permissions
style_fetch
cache_templates
global_start
parse_templates
global_setup_complete
search_before_process
search_start
search_results_start
search_results_query_posts
search_results_prebits
threadbit_process
search_results_postbit
pagenav_page
pagenav_complete
forumjump
search_complete
navbits
navbits_complete
Messages:
time to check permissions: 0.0024
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(7, 0, 1,''); -> cached fperms for forum 7
(unspecified) fetch_permissions(7, 0, 1,''); -> cached fperms for forum 7
(unspecified) fetch_permissions(7, 0, 1,''); -> cached fperms for forum 7
(unspecified) fetch_permissions(7, 0, 1,''); -> cached fperms for forum 7
(unspecified) fetch_permissions(7, 0, 1,''); -> cached fperms for forum 7
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(15, 0, 1,''); -> cached fperms for forum 15
(unspecified) fetch_permissions(7, 0, 1,''); -> cached fperms for forum 7
(unspecified) fetch_permissions(7, 0, 1,''); -> cached fperms for forum 7
(unspecified) fetch_permissions(7, 0, 1,''); -> cached fperms for forum 7
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(111, 0, 1,''); -> cached fperms for forum 111
(unspecified) fetch_permissions(168, 0, 1,''); -> cached fperms for forum 168
(unspecified) fetch_permissions(168, 0, 1,''); -> cached fperms for forum 168
(unspecified) fetch_permissions(7, 0, 1,''); -> cached fperms for forum 7
(unspecified) fetch_permissions(7, 0, 1,''); -> cached fperms for forum 7
FULLTEXT Search
php_sapi_name(): fpm-fcgi