Go Back   vb.org Archive > vBulletin 4 Discussion > vB4 Design and Graphics Discussions
  #1  
Old 12-16-2010, 07:43 PM
icekola icekola is offline
 
Join Date: Mar 2005
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Background issue

Attached are 2 screenshots of my vb site. I installed webtemplates, helpdesk and yet another awards. For those 3 pages, it would appear that a background is missing resulting in the site looking a bit odd.

I'm stressing out on the lack of ability on my end to resolve this issue. I am asking you all for some guidance. I would appreciate that immensely.

Thank you.
Attached Images
File Type: jpg vcogood.jpg (140.0 KB, 0 views)
File Type: jpg VCOBad.jpg (48.3 KB, 0 views)
Reply With Quote
  #2  
Old 12-16-2010, 11:12 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 icekola View Post
Attached are 2 screenshots of my vb site. I installed webtemplates, helpdesk and yet another awards. For those 3 pages, it would appear that a background is missing resulting in the site looking a bit odd.

I'm stressing out on the lack of ability on my end to resolve this issue. I am asking you all for some guidance. I would appreciate that immensely.

Thank you.
That's a custom style and the additional.css is not being read...

Edit the template: WebTemplates_NowBrowsing

Copy the css from your additional.css and place it at the top of the template, wrap it in the code below before pasting:

Code:
<style type="text/css">

Your CSS Here.

</style>
Example:

Code:
<style type="text/css">
body {
	background-image: url(images/stylename/forumhome.png);
	background-repeat: repeat-y;
	background-position: top;
}

.clear { clear: both; }

.padding {
	padding: 10px;
}
</style>
That should fix it up for now check the mods thread to see if anyone else has had that issue and if a alternate fix is present or if the modification has been updated.

Edit: I see these posts in the mods thread here check them out and the last page of posts seems to have some info it seems others have had a similar issue:

https://vborg.vbsupport.ru/showpost....8&postcount=79
https://vborg.vbsupport.ru/showpost....3&postcount=85

Mod: https://vborg.vbsupport.ru/showthread.php?t=250202
Reply With Quote
  #3  
Old 12-17-2010, 07:19 PM
icekola icekola is offline
 
Join Date: Mar 2005
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you thelastsuperman for your help. Unfortunately, it did not work or I somehow did not follow instructions correctly. I also understand through the provided links that this may be a theme issue conflicting with vb header/footer.
Reply With Quote
  #4  
Old 12-17-2010, 07:30 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 icekola View Post
Thank you thelastsuperman for your help. Unfortunately, it did not work or I somehow did not follow instructions correctly. I also understand through the provided links that this may be a theme issue conflicting with vb header/footer.
Well remember...

Visit your additional.css template, copy all the code, now visit the webtemplates template I mentioned above and paste that code from your additional.css at the top!

Now add:

Code:
<style type="text/css">
Above the css you just pasted.

Now add:

Code:
</style>
Below the css you pasted, hit save and check the webtemplate now... it should be fixed IF your styles creator has the styles custom css in additional.css otherwise there might still be issues present.
Reply With Quote
  #5  
Old 12-17-2010, 08:41 PM
icekola icekola is offline
 
Join Date: Mar 2005
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

omg that worked. Thank you so much. That fixed webtemplates perfectly. Sweet. Me so happy heh. Much appreciated.

Now to figure out how to do the same for helpdesk and awards heh.
Reply With Quote
  #6  
Old 12-17-2010, 08:46 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 icekola View Post
omg that worked. Thank you so much. That fixed webtemplates perfectly. Sweet. Me so happy heh. Much appreciated.

Now to figure out how to do the same for helpdesk and awards heh.
Good

In either case or for any mod in this style your using that seems to "break" simply find a common template and post in your custom css using that same method. I will note that this style should be pulling the info correctly so I would ask the developer about that.
Reply With Quote
  #7  
Old 12-19-2010, 02:43 AM
LifesGreatestGift's Avatar
LifesGreatestGift LifesGreatestGift is offline
 
Join Date: Jul 2009
Location: Louisville, KY USA
Posts: 885
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Or just add

Code:
{vb:cssfile additional.css}
to the bottom of the "custom" templates so there is no need to edit CSS attributes in 2 locations for future additions.
Reply With Quote
  #8  
Old 12-19-2010, 02:36 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 TheWindows7Site View Post
Or just add

Code:
{vb:cssfile additional.css}
to the bottom of the "custom" templates so there is no need to edit CSS attributes in 2 locations for future additions.
Even simpler = Even better!

Good suggestion I often overlook that and sometimes go the long way about things .
Reply With Quote
  #9  
Old 12-19-2010, 04:16 PM
icekola icekola is offline
 
Join Date: Mar 2005
Posts: 15
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I got helpdesk working but I got an error with yetanotherawards certain templates.
Quote:
Warning: Invalid argument supplied for foreach() in [path]/includes/functions.php on line 3391
Custom templates
AWARDS - good
awards_request_form - err
awards_showcase - err
awards_viewaward - err

I tried both methods but with same results.
Reply With Quote
  #10  
Old 12-19-2010, 04:36 PM
LifesGreatestGift's Avatar
LifesGreatestGift LifesGreatestGift is offline
 
Join Date: Jul 2009
Location: Louisville, KY USA
Posts: 885
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by icekola View Post
I got helpdesk working but I got an error with yetanotherawards certain templates.


Custom templates
AWARDS - good
awards_request_form - err
awards_showcase - err
awards_viewaward - err

I tried both methods but with same results.
Appears to be a plugin/coding issue/conflict. This is a thread/forum for Design/Graphics.
Reply With Quote
Reply

Thread Tools
Display Modes

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 05:57 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.04359 seconds
  • Memory Usage 2,277KB
  • Queries Executed 12 (?)
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
  • (6)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (2)postbit_attachment
  • (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_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
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete