Bluepearl Design
Go Back   Bluepearl Design > Bluepearl Design > Need Help?

iframe question again, pretty please?

Ask us questions relavent to Web Design and Computers.
Also support for Bluepearl Design and webclans.net hosting.

    

Reply
 
LinkBack Thread Tools Rate Thread Display Modes
Old 12-15-2005, 08:40 AM   #1 (permalink)
 
autumn whispers2me's Avatar
 
Title: Bluepearl Veteran
Join Date: May 2005
Location: Mobile, AL
Age: 47
Posts: 1,035
Rep Power: 5 autumn whispers2me is on a distinguished road
Send a message via Yahoo to autumn whispers2me
Question iframe question again, pretty please?

Okay, another iframe question: I'm trying to create a site with a similar design as the one I posted the link on before, the one with the iframe on top of the background in the table...

Can you guys tell me how to do that???? Pleeeease? lol

I have the image in the table sliced and the one where the text (iframe info) will be has the image set to background. So how to I implement the iframe where it doesn't put a background on top of the cell background??

Thanks.
__________________

Autumn Whispers to Me - The Corridors - Ghost in the Lens
"In a dusty corner of the room a light glows from a crack in the toybox lid:
Something quickens inside the wooden womb." -- E. Riddle, 2004
autumn whispers2me is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 12-15-2005, 01:30 PM   #2 (permalink)
 
Sean's Avatar
 
Title: Founder/Admin
Join Date: Jan 2004
Location: Sydney, Australia
Age: 28
Posts: 8,907
Images: 386
Blog Entries: 4
Rep Power: 10 Sean will become famous soon enough
Send a message via MSN to Sean Send a message via Skype™ to Sean
Re: iframe question again, pretty please?

to add the background to your iframe u just add an internal stylesheet to the page you r calling.

For example your iframe looks like this:
Code:
<iframe src="page.html" name="page" width="145" height="393" noresize frameborder="0"></iframe>
The above is calling upon the file page.html to add to your iframe, so the page.html would look like this.

HTML Code:
<style>
BODY    {
background-image: url(images/frame2.jpg); 
overflow: auto;
background-color: #FEF7CB;
background-repeat: no-repeat;
background-attachment: fixed; 
color:#800080; FONT-FAMILY: Geneva, Arial, Helvetica; FONT-SIZE: 11px; LINE-HEIGHT:16pt;
}
</style>
<script language=javascript type="text/javascript">
<!--
if (top.location == self.location) {
    top.location.href = "index.html"
    }
// -->
</script>
<p>Welcome to Griffins house of pain</p> 
Hope this helps

Also i added some javascript which i use when doing sites with iframes. Sometimes search engines will index your iframes and when a user clicks on a search engine link to your site they will be sent to the iframe and not the entire page. All this javascript does is check for this and will re-load the page if needed
Sean is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 12-15-2005, 06:46 PM   #3 (permalink)
 
Title: Bryan
Join Date: Jan 2004
Location: Dundee
Age: 21
Posts: 3,547
Rep Power: 8 wasahobo is on a distinguished road
Send a message via AIM to wasahobo Send a message via MSN to wasahobo
Re: iframe question again, pretty please?

You beat me to the punch
__________________
BluePearl-Design + 3sStudios = Unlimited Possibilities.


Current Project: http://www.3sstudios.com/cloud.htm
wasahobo is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 12-16-2005, 12:42 AM   #4 (permalink)
 
autumn whispers2me's Avatar
 
Title: Bluepearl Veteran
Join Date: May 2005
Location: Mobile, AL
Age: 47
Posts: 1,035
Rep Power: 5 autumn whispers2me is on a distinguished road
Send a message via Yahoo to autumn whispers2me
Re: iframe question again, pretty please?

thanks guys... not exactly sure how that works, but.... this is the effect I'm going for:

http://jamesdstark.com

So Sean, does your code just place the text over the bg image? Yeah, I know... I'm totally lost as usual. lol

It's going here: http://www.autumnwhisperstome.com/au...sperstome.html
__________________

Autumn Whispers to Me - The Corridors - Ghost in the Lens
"In a dusty corner of the room a light glows from a crack in the toybox lid:
Something quickens inside the wooden womb." -- E. Riddle, 2004

Last edited by autumn whispers2me; 12-16-2005 at 12:49 AM.
autumn whispers2me is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 12-16-2005, 01:33 AM   #5 (permalink)
 
autumn whispers2me's Avatar
 
Title: Bluepearl Veteran
Join Date: May 2005
Location: Mobile, AL
Age: 47
Posts: 1,035
Rep Power: 5 autumn whispers2me is on a distinguished road
Send a message via Yahoo to autumn whispers2me
Re: iframe question again, pretty please?

Aw man! I just realized something! I looked at that site again, and that bg image is ONE image, not a sliced one! Ugh.. I sliced mine. Shoooooooot.

I guess the benefit with no slices is that the iframe won't split any cells apart.

Shoooooooot! So should I change what I have to one image instead of a sliced one?

Confuzzed.
__________________

Autumn Whispers to Me - The Corridors - Ghost in the Lens
"In a dusty corner of the room a light glows from a crack in the toybox lid:
Something quickens inside the wooden womb." -- E. Riddle, 2004
autumn whispers2me is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 12-16-2005, 03:53 AM   #6 (permalink)
 
Fragalot's Avatar
 
Title: Ipood
Join Date: Nov 2004
Location: belgium west-flandres
Age: 19
Posts: 4,436
Images: 1
Rep Power: 9 Fragalot is on a distinguished road
Send a message via ICQ to Fragalot Send a message via MSN to Fragalot Send a message via Yahoo to Fragalot
Re: iframe question again, pretty please?

paste them back together in photoshop, LOL xD
Fragalot is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 12-16-2005, 07:28 PM   #7 (permalink)
 
Sean's Avatar
 
Title: Founder/Admin
Join Date: Jan 2004
Location: Sydney, Australia
Age: 28
Posts: 8,907
Images: 386
Blog Entries: 4
Rep Power: 10 Sean will become famous soon enough
Send a message via MSN to Sean Send a message via Skype™ to Sean
Re: iframe question again, pretty please?

if the image is not cut it means he is using a transparant iframe.

Code:
allowtransparency="true" 
Sean is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 12-16-2005, 10:58 PM   #8 (permalink)
 
Fragalot's Avatar
 
Title: Ipood
Join Date: Nov 2004
Location: belgium west-flandres
Age: 19
Posts: 4,436
Images: 1
Rep Power: 9 Fragalot is on a distinguished road
Send a message via ICQ to Fragalot Send a message via MSN to Fragalot Send a message via Yahoo to Fragalot
Re: iframe question again, pretty please?

... ok, that works 2...
Fragalot is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 12-17-2005, 12:59 AM   #9 (permalink)
 
autumn whispers2me's Avatar
 
Title: Bluepearl Veteran
Join Date: May 2005
Location: Mobile, AL
Age: 47
Posts: 1,035
Rep Power: 5 autumn whispers2me is on a distinguished road
Send a message via Yahoo to autumn whispers2me
Re: iframe question again, pretty please?

lol So I don't have to use just one image? Is one better than a sliced image? Thanks, guys. You rule as always.
__________________

Autumn Whispers to Me - The Corridors - Ghost in the Lens
"In a dusty corner of the room a light glows from a crack in the toybox lid:
Something quickens inside the wooden womb." -- E. Riddle, 2004
autumn whispers2me is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 12-19-2005, 03:43 PM   #10 (permalink)
 
Sean's Avatar
 
Title: Founder/Admin
Join Date: Jan 2004
Location: Sydney, Australia
Age: 28
Posts: 8,907
Images: 386
Blog Entries: 4
Rep Power: 10 Sean will become famous soon enough
Send a message via MSN to Sean Send a message via Skype™ to Sean
Re: iframe question again, pretty please?

both ways will work Autumn, but i am not sure if iframe transparancy works in all browsers, i could be wrong
Sean is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes Rate This Thread
Rate This Thread:

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
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads for: iframe question again, pretty please?
Thread Thread Starter Forum Replies Last Post
Question for Griffin.. ravenjwolfe ClanzDarkness2 16 01-16-2006 12:37 AM
A Question about Clanz2 loremstr ClanzDarkness2 7 10-24-2005 09:56 AM
Another iframe question autumn whispers2me Need Help? 11 07-18-2005 03:23 AM
Just a question queen_of_the_dead Need Help? 6 10-20-2004 05:05 AM
Question about Home page bart Need Help? 12 06-13-2004 11:33 AM


  
Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
Bluepearl Templates

All times are GMT +11. The time now is 09:05 PM.

 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52