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 2
1
2
>
Showing results 1 to 25 of 33
Search took
0.00
seconds.
Search:
Posts Made By:
CroNiX
Forum:
vB4 General Discussions
01-10-2011, 05:51 AM
Replies:
3
Installing VB in Index
Views:
495
Posted By
CroNiX
Do you have the suite or just forum? Also, there...
Do you have the suite or just forum? Also, there will be a 4.1.1 release soon that is supposed to make this easier to put things in different places, ie forum/blog.
Forum:
vBulletin 4.x Add-ons
01-08-2011, 04:48 PM
Replies:
6
Miscellaneous Hacks -
AJAX Support for Suite Components on Subdomains
Views:
3,030
Posted By
CroNiX
Anxiously awaiting 4.1.1 so I can try this out :)
Anxiously awaiting 4.1.1 so I can try this out :)
Forum:
Modification Requests/Questions (Unpaid)
01-07-2011, 04:18 AM
Replies:
12
Water mark images?
Views:
1,532
Posted By
CroNiX
I'd bet this would make you an easy target for a...
I'd bet this would make you an easy target for a lawsuit by the copyright holder. Watermarking your own images is one thing...
Forum:
Modification Requests/Questions (Unpaid)
01-06-2011, 04:55 AM
Replies:
5
CSS property doesnt work in vbulletin ?
Views:
967
Posted By
CroNiX
You think XHTML 1 is older than HTML 3.2? ...
You think XHTML 1 is older than HTML 3.2?
http://www.w3.org/TR/REC-html32
http://www.w3.org/TR/xhtml1/
Forum:
vB4 General Discussions
12-31-2010, 11:09 PM
Replies:
18
Margin / Padding problems :(
Views:
870
Posted By
CroNiX
I am using firebug and looking at the raw html...
I am using firebug and looking at the raw html output that your forum is producing. I am then finding the style rules (also with firebug) associated with those html elements so you can alter them in...
Forum:
vB4 General Discussions
12-31-2010, 10:45 PM
Replies:
18
Margin / Padding problems :(
Views:
870
Posted By
CroNiX
Its hard to explain unless you know html. In...
Its hard to explain unless you know html.
In general:
<div id="parent">
<div id="child1">This is child one because it is contained WITHIN parent</div>
</div><!-- This is end of parent...
Forum:
vB4 General Discussions
12-31-2010, 10:15 PM
Replies:
18
Margin / Padding problems :(
Views:
870
Posted By
CroNiX
try doing the same thing to the parent container,...
try doing the same thing to the parent container, which is ".forumrow". It also has a min-height set.
Are you using firefox with the firebug extension? You can edit this stuff in real time...
Forum:
vB4 General Discussions
12-31-2010, 09:57 PM
Replies:
18
Margin / Padding problems :(
Views:
870
Posted By
CroNiX
Thats the problem, not all of the vars are IN...
Thats the problem, not all of the vars are IN stylevars (yet), therefor not changeable without manual editing.
The only way I know how to change ALL style attributes is to:
1) in admincp,...
Forum:
vB4 General Discussions
12-31-2010, 09:24 PM
Replies:
18
Margin / Padding problems :(
Views:
870
Posted By
CroNiX
I don't have a simple answer. vb made things...
I don't have a simple answer. vb made things very hard to change. What I have done is export all of my css from the database to files and add all of my manual changes to additional.css.
I'm...
Forum:
vB4 General Discussions
12-31-2010, 09:10 PM
Replies:
18
Margin / Padding problems :(
Views:
870
Posted By
CroNiX
the css style for class ".foruminfo" has a...
the css style for class ".foruminfo"
has a min-height of 48px so that they are all the same height.
You can make that smaller. It is preventing it from shrinking if your image is smaller than...
Forum:
vB4 General Discussions
12-31-2010, 09:07 PM
Replies:
18
Margin / Padding problems :(
Views:
870
Posted By
CroNiX
It looks like if you just resize that ONE image...
It looks like if you just resize that ONE image that isn't as tall as the rest of them it would look normal.
Forum:
vB4 General Discussions
12-31-2010, 09:03 PM
Replies:
18
Margin / Padding problems :(
Views:
870
Posted By
CroNiX
Is it possibly your browser? Looks like how you...
Is it possibly your browser? Looks like how you want it, I think, in latest firefox?
Forum:
vB4 General Discussions
12-31-2010, 08:56 PM
Replies:
18
Margin / Padding problems :(
Views:
870
Posted By
CroNiX
A link to your forum exhibiting the problem would...
A link to your forum exhibiting the problem would help more than a picture so we can dissect the css.
Forum:
vB4 Programming Discussions
12-31-2010, 07:49 PM
Replies:
9
Need someone with big CSS brain to help fix my little widget.
Views:
978
Posted By
CroNiX
Not a problem :)
Not a problem :)
Forum:
vB4 Programming Discussions
12-31-2010, 07:38 PM
Replies:
9
Need someone with big CSS brain to help fix my little widget.
Views:
978
Posted By
CroNiX
#TOCbox { margin:0 auto} is the problem. The...
#TOCbox { margin:0 auto} is the problem. The auto is telling it to center align that div.
--------------- Added 1293831709 at 1293831709 ---------------
It also looks like <div...
Forum:
vB4 Design and Graphics Discussions
12-31-2010, 07:31 PM
Replies:
3
Vbulletin 3.8 to 4.0 Table Structure
Views:
1,790
Posted By
CroNiX
Pretty sure they got rid of most of the tables...
Pretty sure they got rid of most of the tables used for layout and finally went to an all css based layout.
Forum:
vB4 Design and Graphics Discussions
12-30-2010, 08:00 PM
Replies:
6
How to modify the CSS of a theme?
Views:
7,009
Posted By
CroNiX
Yeah, add it to the additional.css file. If...
Yeah, add it to the additional.css file. If you're not using firebug it makes finding these things a breeze. Its just too tedius (at least to me) to change things via the stylevars. I just...
Forum:
vB4 Design and Graphics Discussions
12-30-2010, 12:02 AM
Replies:
6
How to modify the CSS of a theme?
Views:
7,009
Posted By
CroNiX
try putting this in your additional.css ...
try putting this in your additional.css
.wysiwyg.content {color:#FFFFFF}
or whatever color...
Forum:
vBulletin.org Site Feedback
12-29-2010, 10:26 PM
Replies:
9
vb.org -> View My Mods
Views:
1,291
Posted By
CroNiX
vb.org -> View My Mods
It would be great if there was something easy you can click on to view all mods by a person. Like when you click on their name in a post and you get the drop down options to PM Them...find all posts...
Forum:
vB4 General Discussions
12-29-2010, 04:21 PM
Replies:
3
Questions regarding paid subscriptions
Views:
422
Posted By
CroNiX
Sorry, I don't know about the international...
Sorry, I don't know about the international aspect. To subscribe, you go to your control panel (not admincp). Theres a link on the left in the "my account" section called Paid Subscriptions. It...
Forum:
vB4 General Discussions
12-29-2010, 08:26 AM
Replies:
1
domain changed, folder moved
Views:
432
Posted By
CroNiX
You'll have to edit /includes/config.php and...
You'll have to edit /includes/config.php
and some things in the 'settings' table.
You should also upload tools.php into the /install directory and run that. It will help change some things.
Forum:
vB4 Programming Discussions
12-28-2010, 12:28 AM
Replies:
3
Edit breadcrumb on a custom vb4 page.
Views:
950
Posted By
CroNiX
$navbits_array = array( ...
$navbits_array = array(
'http://yoursite.com/other_page' => 'Other Page',
'' => 'This Page' //last link generally isn't active, so no url ...
Forum:
Community Lounge
12-27-2010, 03:52 AM
Replies:
8
Props to Lynne!
Views:
960
Posted By
CroNiX
Yes, another "thank you" for Lynne. Not only is...
Yes, another "thank you" for Lynne. Not only is she very helpful but her articles are very straightforward and well written.
Forum:
vB4 General Discussions
12-26-2010, 06:17 PM
Replies:
9
How to make the CMS tab the default page after login?
Views:
1,023
Posted By
CroNiX
This should work: if ( !...
This should work:
if ( ! is_member_of($vbulletin->userinfo, 5, 6, 7))
{
$vbulletin->url = 'http://www.site.com';
}
Assuming you haven't changed any of the default usergroups.
It should...
Forum:
vB4 General Discussions
12-24-2010, 08:00 PM
Replies:
9
How to make the CMS tab the default page after login?
Views:
1,023
Posted By
CroNiX
You're welcome. Happy holidays :)
You're welcome. Happy holidays :)
Showing results 1 to 25 of 33
Page 1 of 2
1
2
>
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
09:40 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.02881 seconds
Memory Usage
2,029KB
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
(1)
pagenav_pagelink
(1)
post_thanks_navbar_search
(1)
search_results
(25)
search_results_postbit
(1)
spacer_close
(1)
spacer_open
(20)
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.0007
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(245, 0, 1,''); -> cached fperms for forum 245
(unspecified) fetch_permissions(245, 0, 1,''); -> cached fperms for forum 245
(unspecified) fetch_permissions(112, 0, 1,''); -> cached fperms for forum 112
(unspecified) fetch_permissions(112, 0, 1,''); -> cached fperms for forum 112
(unspecified) fetch_permissions(112, 0, 1,''); -> cached fperms for forum 112
(unspecified) fetch_permissions(112, 0, 1,''); -> cached fperms for forum 112
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(253, 0, 1,''); -> cached fperms for forum 253
(unspecified) fetch_permissions(253, 0, 1,''); -> cached fperms for forum 253
(unspecified) fetch_permissions(253, 0, 1,''); -> cached fperms for forum 253
(unspecified) fetch_permissions(253, 0, 1,''); -> cached fperms for forum 253
(unspecified) fetch_permissions(253, 0, 1,''); -> cached fperms for forum 253
(unspecified) fetch_permissions(253, 0, 1,''); -> cached fperms for forum 253
(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(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(252, 0, 1,''); -> cached fperms for forum 252
(unspecified) fetch_permissions(13, 0, 1,''); -> cached fperms for forum 13
(unspecified) fetch_permissions(13, 0, 1,''); -> cached fperms for forum 13
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
(unspecified) fetch_permissions(251, 0, 1,''); -> cached fperms for forum 251
FULLTEXT Search
php_sapi_name(): fpm-fcgi