Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Programming Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 06-28-2005, 05:57 PM
m0nde's Avatar
m0nde m0nde is offline
 
Join Date: Mar 2005
Location: Toronto, ON Canada
Posts: 204
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Applying Stylesheet to IFRAME contents

I'm using vbadvanced and have created a module to show information in an IFRAME.
However, the contents of the IFRAME is never formatted according to what I've set up in my style. The contents always has a white background with black text in Times New Roman.

Is there something I'm missing?
I've tried to include a class="alt1" in the IFRAME tag and have even surrounded the contents of the HTML file in <span class="alt1"> tags, all to no avail.

Included is an example:

HTML Code:
<td class="$getbgrow alt1" width="100%" align="center">
<iframe title="Text" name="I1" width="100%" height="100" src="/forums/modules/text.html" marginwidth="1" marginheight="1" scrolling="auto" border="0" frameborder="0">
<!-- Alternate content for non-supporting browsers -->
<a href="/forums/modules/text.html" target="_blank">Text</a>
</iframe></td>
The text.html file is a very long page and that is why I want it included in an IFRAME with a scroll bar.

HTML Code:
<span class="alt1"><strong>Blah blah blah ...</strong><br /><br />Blah blah blah</span>
- Sid
Reply With Quote
  #2  
Old 06-28-2005, 06:21 PM
tamarian tamarian is offline
 
Join Date: Oct 2001
Location: Canada
Posts: 1,205
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I think the iframe page needs access to the style sheet on it's own, since it's loaded separately. That's just a guess To test this guess, save a copy of your stylesheet to a file, and add the file to the iframe page...
Reply With Quote
  #3  
Old 06-29-2005, 12:26 AM
m0nde's Avatar
m0nde m0nde is offline
 
Join Date: Mar 2005
Location: Toronto, ON Canada
Posts: 204
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by tamarin
I think the iframe page needs access to the style sheet on it's own, since it's loaded separately.
Sorry for being daft, but how do I do this? I understand that it needs access to the .CSS information but I have several themes on my vbulletin site, so how will I get this to work?

- Sid
Reply With Quote
  #4  
Old 06-29-2005, 12:37 AM
tamarian tamarian is offline
 
Join Date: Oct 2001
Location: Canada
Posts: 1,205
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by m0nde
Sorry for being daft, but how do I do this? I understand that it needs access to the .CSS information but I have several themes on my vbulletin site, so how will I get this to work?

- Sid
Ah, I didn't consider multiple styles. One possible solution is to make the iframe file a PHP file. This way you can include global.php which should give you access to the user's style.
Reply With Quote
  #5  
Old 06-29-2005, 02:24 AM
deathemperor's Avatar
deathemperor deathemperor is offline
 
Join Date: Jul 2003
Location: HOL
Posts: 1,270
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

that iframe is simply a page, so you need to use $headinclude to get the CSS properly.
Reply With Quote
  #6  
Old 06-29-2005, 08:55 PM
m0nde's Avatar
m0nde m0nde is offline
 
Join Date: Mar 2005
Location: Toronto, ON Canada
Posts: 204
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by deathemperor
that iframe is simply a page, so you need to use $headinclude to get the CSS properly.
I have no idea how to use $headinclude Please spell it out for me.

Quote:
Originally Posted by tamarin
One possible solution is to make the iframe file a PHP file. This way you can include global.php which should give you access to the user's style.
I did the following and named it text.php and it just got me a blank IFRAME :ermm: :
PHP Code:
<?php

require_once('/forums/global.php');

?>
<span class="alt1"><strong>Blah...etc.</strong><br /><br />More blah</span>
Can you tell me what I should do to remedy this?

- Sid
Reply With Quote
  #7  
Old 06-30-2005, 03:28 AM
nug nug is offline
 
Join Date: Jan 2004
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm trying to do the same thing. Solved the problem by putting $style[css] in the <head> tags.
Reply With Quote
  #8  
Old 06-30-2005, 12:22 PM
m0nde's Avatar
m0nde m0nde is offline
 
Join Date: Mar 2005
Location: Toronto, ON Canada
Posts: 204
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by nug
I'm trying to do the same thing. Solved the problem by putting $style[css] in the <head> tags.
When I put $style[css] in the <head> tags of the IFRAME'D html file, I get the words $style[css] showing up as text in the IFRAME.
Reply With Quote
  #9  
Old 06-30-2005, 12:42 PM
tamarian tamarian is offline
 
Join Date: Oct 2001
Location: Canada
Posts: 1,205
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Put it this way:

<? echo $style['css']; ?>
Reply With Quote
  #10  
Old 06-30-2005, 01:56 PM
m0nde's Avatar
m0nde m0nde is offline
 
Join Date: Mar 2005
Location: Toronto, ON Canada
Posts: 204
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by tamarian
Put it this way:

<? echo $style['css']; ?>
Thankyou for spelling this out. I'm a total PHP newbie as you can tell! :speechless:

Now, I've done what you've said and this is the code I've got:

HTML Code:
<html>
<head>
<? echo $style['css']; ?>
</head>
<body>
<span class="alt1"><strong>Blah...</strong><br /><br />Blah Blah</span>
</body>
</html>
I've named this text.html and I'm calling this using an IFRAME.
But when I do this, I just get a white background with black text and no formatting other than the bold and line breaks in the scrolling IFRAME.

Can someone tell me what I'm doing wrong?

- Sid
Reply With Quote
Reply


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 01:33 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.03890 seconds
  • Memory Usage 2,262KB
  • Queries Executed 13 (?)
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
  • (3)bbcode_html
  • (1)bbcode_php
  • (6)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (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_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete