Go Back   vb.org Archive > Search Forums
FAQ Community Calendar Today's Posts Search

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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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

 
Forum Jump

All times are GMT. The time now is 12:53 AM.


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