vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Styles (https://vborg.vbsupport.ru/forumdisplay.php?f=247)
-   -   Suite Style - Avenger Blue Style by TheLastSuperman (https://vborg.vbsupport.ru/showthread.php?t=269253)

K4GAP 01-30-2014 05:44 AM

I really have to thank you for going above and beyond by producing and maintaining this style.

As far as any issues with your latest release, I've been beating it up and shaking it down. So far everything looks good after the latest update.

Thanks

TheLastSuperman 01-30-2014 05:56 AM

Quote:

Originally Posted by Kat-2 (Post 2477881)
I tried the first code, didn't change anything. Replaced it with second code, and still didn't change anything. I did it exactly as you stated to do it. I don't know what the heck is wrong. :(

Hmm ok then try this one:

PHP Code:

if (STYLEID == 1) {
$vsacssfix '<style type="text/css">
#vsacb_messagearea {
background:#ffffff !important;
background-color:#ffffff !important;
}
</style>'
;
$template_hook[headinclude_bottom_css] .= $vsacssfix;


But make sure that when hovering over the styles name in Style Manager that the styleid # is in fact 1, if it's not then change this 1 to the # of your style.

Code:

if (STYLEID == 1) {
$vsacssfix = '<style type="text/css">
#vsacb_messagearea {
background:#ffffff !important;
background-color:#ffffff !important;
}
</style>';
$template_hook[headinclude_bottom_css] .= $vsacssfix;
}


Basically if you are viewing all your styles via the Style Manager in admincp and you click on a style it opens that style in a new window, note the url up top i.e. http://www.yoursite.com/forum.php?styleid=22 and the last # which in my example is 22, is the style id so then we would replace the 1 with 22 ;).

Quote:

Originally Posted by GaryT (Post 2477895)
I really have to thank you for going above and beyond by producing and maintaining this style.

As far as any issues with your latest release, I've been beating it up and shaking it down. So far everything looks good after the latest update.

Thanks

Thanks, been real busy lately and just trying to be helpful best I can ;).

Kat-2 01-30-2014 06:23 PM

Quote:

Originally Posted by TheLastSuperman (Post 2477903)
Hmm ok then try this one:

PHP Code:

if (STYLEID == 1) {
$vsacssfix '<style type="text/css">
#vsacb_messagearea {
background:#ffffff !important;
background-color:#ffffff !important;
}
</style>'
;
$template_hook[headinclude_bottom_css] .= $vsacssfix;


But make sure that when hovering over the styles name in Style Manager that the styleid # is in fact 1, if it's not then change this 1 to the # of your style.

Code:

if (STYLEID == 1) {
$vsacssfix = '<style type="text/css">
#vsacb_messagearea {
background:#ffffff !important;
background-color:#ffffff !important;
}
</style>';
$template_hook[headinclude_bottom_css] .= $vsacssfix;
}


Basically if you are viewing all your styles via the Style Manager in admincp and you click on a style it opens that style in a new window, note the url up top i.e. http://www.yoursite.com/forum.php?styleid=22 and the last # which in my example is 22, is the style id so then we would replace the 1 with 22 ;).


I am sorry I am being so much trouble.

Okay...that theme is #90 on my board, but I don't know where you want me to put the new code in..

TheLastSuperman 01-30-2014 07:01 PM

Quote:

Originally Posted by Kat-2 (Post 2478056)
I am sorry I am being so much trouble.

Okay...that theme is #90 on my board, but I don't know where you want me to put the new code in..

Ok so use this code:
PHP Code:

if (STYLEID == 90) {
$vsacssfix '<style type="text/css">
#vsacb_messagearea {
background:#ffffff !important;
background-color:#ffffff !important;
}
</style>'
;
$template_hook[headinclude_bottom_css] .= $vsacssfix;


You must paste that code when you make a new plugin so do this:
  • Login to Admin Control Panel.
  • On left column scroll to find "Plugins & Products".
  • Now click the little arrow it opens-up/drops-down a menu.
  • Now click Add New Plugin.
  • Now key in the title like I stated a few posts above.
  • Now fill in the other info i.e. execution order (set to 5) and the Hook Location (use the drop-down to select the location, scroll to find "parse_templates" and finally paste the code I supplied in the code box, make sure the plugin is set to Active = yes then save.

^ Doing the above results in the new plugin being active and it should change the background color of the chatbox style in styleid #90 (if this is the same style you edited before when we were in the vsa templates it will not change, make sure you are changing the chatbox background in a different style that needs it done etc).

No trouble at all, as you can see I support much more than my style sometimes which is not a problem ;).

Kat-2 01-30-2014 07:53 PM

Yay! Success! Thank you very much. Tell your wife to give you a big hug from me. LOL

TheLastSuperman 01-30-2014 08:15 PM

Quote:

Originally Posted by Kat-2 (Post 2478066)
Yay! Success! Thank you very much. Tell your wife to give you a big hug from me. LOL

Will do :D and you're clear on how to add more styles to this right? Let's do an example real quick to be sure but I'm going to make it simpler than before:
PHP Code:

if (STYLEID == 90 OR STYLEID == 91 OR STYLEID == 93) {
$vsacssfix '<style type="text/css">
#vsacb_messagearea {
background:#ffffff !important;
background-color:#ffffff !important;
}
</style>'
;
$template_hook[headinclude_bottom_css] .= $vsacssfix;


^ So per the above I just added styleid's 90, 91, and 93 because in my example code we are pretending that styleid 92 already has a white background for the chat because it's a light style ;) the other three listed in the code were dark styles like avenger blue. <-- That's on an example if you're adding more than one style to this plugin.

Hint: You can also modify this code to make new plugins doing many things including switching logos per forum, background images per forum and much more it just takes some creativity and some tinkering from all of you :cool:. In fact I use variants of this on many sites accomplishing many things! If you've ever ran into some of the shared css issues with custom styling this can come in handy when css is shared on a different page but you're trying to accomplish something that just does not like the default definition being overwritten in additional.css (since it's global) so you use a plugin like this to specify THIS_SCRIPT or forumid and overwrite it there ;).

Edit: Actually good idea for a new article ^ so I'll have that posted soon!

Kat-2 01-31-2014 02:00 AM

Quote:

Originally Posted by TheLastSuperman (Post 2478067)
Will do :D and you're clear on how to add more styles to this right? Let's do an example real quick to be sure but I'm going to make it simpler than before:
PHP Code:

if (STYLEID == 90 OR STYLEID == 91 OR STYLEID == 93) {
$vsacssfix '<style type="text/css">
#vsacb_messagearea {
background:#ffffff !important;
background-color:#ffffff !important;
}
</style>'
;
$template_hook[headinclude_bottom_css] .= $vsacssfix;


^ So per the above I just added styleid's 90, 91, and 93 because in my example code we are pretending that styleid 92 already has a white background for the chat because it's a light style ;) the other three listed in the code were dark styles like avenger blue. <-- That's on an example if you're adding more than one style to this plugin.

Hint: You can also modify this code to make new plugins doing many things including switching logos per forum, background images per forum and much more it just takes some creativity and some tinkering from all of you :cool:. In fact I use variants of this on many sites accomplishing many things! If you've ever ran into some of the shared css issues with custom styling this can come in handy when css is shared on a different page but you're trying to accomplish something that just does not like the default definition being overwritten in additional.css (since it's global) so you use a plugin like this to specify THIS_SCRIPT or forumid and overwrite it there ;).

Edit: Actually good idea for a new article ^ so I'll have that posted soon!


Yes, I gotcha. And, I even went in and changed the color code from the stark white to a softer pale gray, which matches other things (such as new and old post images) in the theme. May do that for a couple other themes I have.

ozzy47 02-01-2014 12:19 PM

1 Attachment(s)
Hey Mike, I just tried the update, I added it as a new style to see how it would react. Got a question though, what is with the different color for the background as seen in the screen shot. (this is the fluid version)

TheLastSuperman 02-01-2014 06:38 PM

Quote:

Originally Posted by ozzy47 (Post 2478373)
Hey Mike, I just tried the update, I added it as a new style to see how it would react. Got a question though, what is with the different color for the background as seen in the screen shot. (this is the fluid version)

Hmm try uploading the new images too because that screenshot, I can tell something is not right as that silver line going across horizontally mid way down the screenshot is the new header area background.

Remember, I had to change a little bit of the css to fix that scrollbar issue but the color change for the record was from #141515 to #161616 ;).

ozzy47 02-01-2014 06:54 PM

Yep, reloading the images seems to have done the trick. :)


All times are GMT. The time now is 05:04 PM.

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.02053 seconds
  • Memory Usage 1,776KB
  • 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
  • (2)bbcode_code_printable
  • (5)bbcode_php_printable
  • (7)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete