View Single Post
  #8  
Old 04-13-2009, 11:13 PM
eJM's Avatar
eJM eJM is offline
 
Join Date: Sep 2004
Location: teh Ether
Posts: 121
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

What about the wrapper I mentioned? If you want to contain the background to only the area covered by the header and down to the footer, then the HTML and BODY areas are out of the equation. But first let me explain something about the boxes you put your CSS into in the Style Manager.

The BODY area of the Style Manager already has a place to put the background CSS - don't duplicate it by adding:
Code:
background: #xxyyzz url(images/misc/image.gif) top center repeat-y
to the Extra CSS attributes. They aren't extra attributes. But anyway, don't put your background image there at all. To do this the way you want, you have to add a wrapper DIV around the area you want the shadow sides to appear. Then assign that DIV an ID labeled wrapper (or whatever you wanna call it). Then the CSS for that ID will be applied to that whole DIV. You'll need something else for the bottom shadow too. Put the CSS for wrapper and the container for the shadow bottom image in the Additional CSS box at the bottom of the Style Manager.

The CSS MIGHT look like this:
Code:
#wrapper {background: #xxyyzz url(images/misc/image.gif) top center repeat-y;}
#shadow-bot {width: nnnpx; height: nnpx; padding: 0; margin: 0 auto;}
Replace the n's with the proper sizes. Then the HTML you will have to add to your templates. If you look at the source of the page, it will look something like this:
HTML Code:
<div id="wrapper">
the area of your forum that is "wrapped" in the shadow sides goes here
</div>
<div id="shadow-bot"><img src="path-to-forum/images/misc/image.gif" alt="" /></div>
The wrapper DIV would probably start before the first TABLE in the header template and end either before or after $ad_location[ad_footer_end] in the footer. Your shadow bottom container would be directly after that.

Caveat: I don't have a link to your forum to check what's what. Besides, this is a lot of work I have spent a number of years trying to learn how to do. Beyond this kind of help here in the forum, you may want to hire someone to do this for you, or continue to do a lot of research and trial and error to get it the way you want.

R'gards,

Jim
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01058 seconds
  • Memory Usage 1,771KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code
  • (1)bbcode_html
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.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_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • 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_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete