Page 1 of 1

http://www.pennindy.com

Posted: Tue 21. Feb 2006, 03:16
by tbuley
Any suggestions on new features I can incorporate would be greatly appreciated!

Posted: Tue 21. Feb 2006, 03:39
by 1996 328ti
Might be easier to your url :)

http://www.pennindy.com

BTW- The footer appears to be cut off.

Posted: Tue 21. Feb 2006, 04:38
by Rolf77
Hello...
sorry, i don't have a suggestions it looks nice...


But i want to ask how you did the "flying" top-link" icon???
Can you please tell me that?

Rolf77

One thing..

Posted: Tue 21. Feb 2006, 05:20
by tbuley
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!

Posted: Tue 21. Feb 2006, 06:58
by Ben
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.

Posted: Wed 22. Feb 2006, 10:42
by Rolf77
Weiss vielleicht jemand anderes, wie man diesen beweglichen

Top_Link machen bei sich reinmachen kann? Siehe oben... (flying top link)

flying top link

Posted: Thu 23. Feb 2006, 18:47
by Clericer
Ich schliesse mich Rolf77 an und würde auch gerne erfaren wie man diesen mitwandernden top Link hin bekommt?

MfG

Clericer

Posted: Thu 23. Feb 2006, 23:12
by pico
Hi

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);
und das

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

Posted: Fri 24. Feb 2006, 07:14
by trip
tbuley wrote:Any suggestions on new features I can incorporate would be greatly appreciated!
nice looking site
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

Posted: Mon 13. Mar 2006, 15:09
by Clericer
Hallo pico und vielen Dank für deinen Hinweis :D

Clericer