http://www.pennindy.com
http://www.pennindy.com
Any suggestions on new features I can incorporate would be greatly appreciated!
-
- Posts: 317
- Joined: Mon 19. Apr 2004, 06:10
- Location: Greenville, SC USA
- Contact:
One thing..
I'm looking to get my main window to float with the shadow like at http://www.ballet-heels.com/home.phtml ...
I am willing to paypal $30 US to anyone who can help me implement this small visual change.
Let me know at editor (at) pennindy.com. Thanks!
I am willing to paypal $30 US to anyone who can help me implement this small visual change.
Let me know at editor (at) pennindy.com. Thanks!
I'd create an image in a graphics program of 760px by 400px. Then create a rounded rectangle about 740px by 380px with some drop shadow. Then, slice the header, footer and 20px column down the right. Add the header and footer images to the template and either add the right side shadow through css or a table in the right template area.
flying top link
Ich schliesse mich Rolf77 an und würde auch gerne erfaren wie man diesen mitwandernden top Link hin bekommt?
MfG
Clericer
MfG
Clericer
Hi
ein bischen den Quellcode anschauen und dann findet man dieses
und das
ein bischen den Quellcode anschauen und dann findet man dieses
Code: Select all
// Script-Name: Flying Top
// Author: Johannes Meyknecht
// Contact: meyknecht@emediafabrik.de
//
//
// you can modify if you want. but please leave the original author information.
// from time to time it needs to update the browser checking for newer browsers.
// start position of the flying top
position_start = 0;
lastScrollY = 0;
// browser checking. update it, if newer browsers are available
NS = (document.layers) ? 1 : 0;
IE = (navigator.appName.indexOf("Microsoft Internet Explorer") != "-1") ? 1 : 0;
OP = ((document.getElementById) && (navigator.appName == "Opera")) ? 1 : 0;
MOZ = ((document.getElementById) && (navigator.appName == "Netscape")) ? 1 : 0;
Kon = (navigator.appName.indexOf("Konqueror") != "-1") ? 1 : 0;
if (IE) {
position = document.all.beamMeUp.style.pixelTop;
}
if (OP) {
position = document.getElementById("beamMeUp").style.pixelTop;
}
if (NS) {
position_start = 0;
position = document.beamMeUp.top;
}
if (MOZ) {
position = document.getElementById("beamMeUp").offsetTop;
}
if (Kon) {
position = document.getElementById("beamMeUp").offsetTop;
}
function abstand() {
if (IE || MOZ || Kon) { diffY = document.body.scrollTop; }
if (NS) { diffY = self.pageYOffset; }
if (OP) { diffY = document.getElementsByTagName("body") [0] .scrollTop; }
if (diffY != lastScrollY) {
// Hier Faktor f�r smooth-Scrolling anpassen
percent = .03 * (diffY - lastScrollY);
if (percent > 0) percent = Math.ceil(percent);
else percent = Math.floor(percent);
if (IE) {
position += percent;
document.all.beamMeUp.style.pixelTop = position + position_start;
}
if (OP) {
position += percent;
document.getElementById("beamMeUp").style.pixelTop = position + position_start;
}
if (NS) {
position += percent;
document.beamMeUp.top = position + position_start;
}
if (MOZ || Kon) {
position += percent;
document.getElementById("beamMeUp").style.top = position + position_start;
}
lastScrollY = lastScrollY + percent;
//window.status=lastScrollY;
}
}
if (NS || IE || OP || MOZ || Kon) action = window.setInterval("abstand()",1);
Code: Select all
<div id="beamMeUp" style="position: absolute; top: 362px; width: 15px;" align="right">
<a href="#top"> <img src="img/indy/totop.gif" alt="to top" border="0"> </a>
</div>
<script type="text/javascript" src="flyingtop.js">
</script>
Re: http://www.pennindy.com
nice looking sitetbuley wrote:Any suggestions on new features I can incorporate would be greatly appreciated!
I would suggest you look at amending the navigation so that you can toe this into the design.
footer is also cut off, is this intentional??
maybe also add a {NAV_ROW} in the footer for better navigation
One question, how many articles have you published so far??
TriP