I' m soooo happy you answered. :) Unfortunatly it did not work :confused:
THANK YOU FOR YOUR HELP!
Printable View
I' m soooo happy you answered. :) Unfortunatly it did not work :confused:
THANK YOU FOR YOUR HELP!
Then post a URL! That's the third time I've written that now. I'm not a mind reader. I can only make guesses at what you've done, the same as anyone else. Unless you allow us to look at your source code as it currently stands, this problem probably isn't going to be fixed. As a last resort, post your source code to the thread, but again, a URL would be much preferred.Quote:
Originally Posted by Peppy
Mike
Hi Mike! http://www.mainzelahr.de/smile/schue...lcklch_103.gif
I did already post my url, but deleted it again,
because I found some misstakes.
Everything is fine now - there are only two problems:
The kissingtrail and
that not all 14 pictures I loaded in the book flip slide show show up, only 8.
Here is the url for the kissingtrail I created:
http://free.pages.at/lifeisbutadream/missukissingtrail/
Here is the url of the "main page":
http://free.pages.at/lifeisbutadream/missu/
Ah ha! Well, that explains that then. :DQuote:
Originally Posted by Peppy
Move the style element that's currently in the body element into the head element. You'll also have to change how you include the images use in the trail (and either use the script or static HTML, not both). When you absolutely-positioned one of the containing div elements, you offset the position of trail images as they're absolutely-positioned, too. I suggest you just stick with the instructions for the script. If you're trying to achieve something in particular, it might be better to ask how to go about it.Quote:
there are only two problems:
The kissingtrail
If I'm reading the source correctly, the script expects paired strings in the array where you defined the images. The first string is a URL to the image, and the second a link to apply to that image when it's shown. That means you need 28 strings in all:Quote:
and that not all 14 pictures I loaded in the book flip slide show show up, only 8.
Hope that helps,Code:var Book_Image_Sources = [
'URL1', '',
'URL2', '',
/* ... */
'URL14', ''
];
Mike
Mike - you are a gem - now I have all pix where I want them.
THANK YOU http://www.cosgan.net/images/smilie/liebe/s010.gif
Conc. the kissingtrail:
I already once followed the instr. for the script - but as I told you if I do this the book flip will not work.
But maybe the reason therefor is also to find, cause arried the pics wrong.
So I will try it again.
This sounds interessting - if I fail - I'll come back and tell you!Quote:
You'll also have to change how you include the images use in the trail (and either use the script or static HTML, not both). When you absolutely-positioned one of the containing div elements, you offset the position of trail images as they're absolutely-positioned, too.
CU http://www.mainzelahr.de/smile/froehlich/zwinkern.gif
Peppy
OK - I did it again - it did not work. :rolleyes:
Please have a look at the html - and tell me the lines I should change!
THANKS
Peppy
http://free.pages.at/lifeisbutadream/missu/
I take it you're not referring to the slide show. I see all fourteen images.Quote:
Originally Posted by Peppy
As far as the trail script is concerned, look back to post #10 in this thread. If you do that, both the trail and slide show scripts will work. However, I'd seriously consider lightening the load on that page. The machine I use is fairly powerful and performance is choppy.
A few quick notes if I may:
Enjoy,
- Copy the placeholder.gif file (used with the slide show) to your own web space. It's bad manners to leech off of other people's sites, even if you didn't intend any harm.
- Find the following style sheet rule:
and addCode:.kisser {
position:absolute;
top:0;
left:0;
visibility:hidden;
}
This will place the trail image above all of the other content.Code:z-index: 1000;
- Instead of that massive list of div elements to create your background, place inside one of the style elements (I'd go for the very beginning of the first one) this rule:
This will tile the background with that image in a much more efficient way.Code:body {
background: url(image/satinblue.jpg);
}
Mike
Good morning Mike! http://www.cosgan.org/images/midi/froehlich/a010.gif
THANK YOU so much.
I knew that when I change the z index the kisstrail would come to the front.
But I could not find one. Didn't think about adding :rolleyes: .
----
Had problems with this:
body {
background: url(image/satinblue.jpg);
}
* I tiped body,
body {
background: http://free.pages.at/lifeisbutadream/missu/(image/satinblue.jpg);
}
*Then I only added it into the body section.
{
background: http://free.pages.at/lifeisbutadream/missu/(image/satinblue.jpg);
}
* Then I tried to set the url between "".
body {
background: "http://free.pages.at/lifeisbutadream/missu/"(image/satinblue.jpg);
}
But the background was gone each time. http://www.mainzelahr.de/smile/geschockt/shocked01.gif
So I did not change this.
---
I neither see the bookflip pics - nor turning pages (with red cross) either.
I see a static 1 px frame with a red cross. http://www.cosgan.net/images/smilie/konfus/n010.gif
http://free.pages.at/lifeisbutadream/missu/
Then I tried again what you told me in post 10.
Now I the kisstrail is gone again an there are no turning pics.
Morning. :pQuote:
Originally Posted by Peppy
The URL might have been wrong or you might not have put it the right place, I'm not sure. If you try anything else, and it doesn't work, could you copy the HTML file and name it something like test.html. That way, you can keep a running version but provide a way for someone to see what you tried and why it didn't work.Quote:
Had problems with this:
body {
background: url(image/satinblue.jpg);
}
When you specify a URL in a CSS declaration, the entire thing must be surrounded by url(...), just as I did previously. That would make the above:Quote:
* I tiped body,
body {
background: http://free.pages.at/lifeisbutadream/missu/(image/satinblue.jpg);
}
Remember to place it properly, for example:Code:body {
background: url(http://free.pages.at/lifeisbutadream/missu/image/satinblue.jpg);
}
Code:<style type="text/css">
h1 {
color:#cc3333;
font-family:"Comic Sans MS",Helvetica;
}
h3 {
color:#993333;
font-family:"Comic Sans MS",Helvetica;
}
.kisser {
position:absolute;
top:0;
left:0;
visibility:hidden;
z-index: 45;
}
body {
background: url(http://free.pages.at/lifeisbutadream/missu/image/satinblue.jpg);
}
</style>
I'm afraid you made a mistake. Remove what you added to the script element (onload="kissbegin(); ImageBook();"). It should have been inserted into the opening tag for the body element, replacing the existing onload attribute.Quote:
Then I tried again what you told me in post 10.
Now I the kisstrail is gone again an there are no turning pics.
At the moment, your body element begins with:
Change it to:HTML Code:<body onload="ImageBook()" bgcolor="#ffffff" alink="#ff0000" link="#0000ff" vlink="#800080">
MikeHTML Code:<body onload="kissbegin(); ImageBook();" bgcolor="#ffffff" alink="#ff0000" link="#0000ff" vlink="#800080">
Of course! http://www.mainzelahr.de/smile/unsortierbar/doh.gifQuote:
<body onload="kissbegin(); ImageBook();" bgcolor="#ffffff" alink="#ff0000" link="#0000ff" vlink="#800080">
Now everything but the background is fine!
What did I overlook now? http://www.cosgan.net/images/smilie/...edene/a015.gif
http://free.pages.at/lifeisbutadream/missu/