http://www.pennindy.com

post released sites here made with phpwcms
Post Reply
tbuley
Posts: 6
Joined: Fri 16. Dec 2005, 04:35

http://www.pennindy.com

Post by tbuley »

Any suggestions on new features I can incorporate would be greatly appreciated!
1996 328ti
Posts: 317
Joined: Mon 19. Apr 2004, 06:10
Location: Greenville, SC USA
Contact:

Post by 1996 328ti »

Might be easier to your url :)

http://www.pennindy.com

BTW- The footer appears to be cut off.
Rolf77
Posts: 37
Joined: Mon 2. Jan 2006, 14:17

Post 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
tbuley
Posts: 6
Joined: Fri 16. Dec 2005, 04:35

One thing..

Post 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!
Ben
Posts: 558
Joined: Wed 14. Jan 2004, 08:05
Location: Atlanta
Contact:

Post 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.
Rolf77
Posts: 37
Joined: Mon 2. Jan 2006, 14:17

Post by Rolf77 »

Weiss vielleicht jemand anderes, wie man diesen beweglichen

Top_Link machen bei sich reinmachen kann? Siehe oben... (flying top link)
Clericer
Posts: 40
Joined: Sat 13. Nov 2004, 04:49
Location: NRW Germany

flying top link

Post by Clericer »

Ich schliesse mich Rolf77 an und würde auch gerne erfaren wie man diesen mitwandernden top Link hin bekommt?

MfG

Clericer
User avatar
pico
Posts: 2595
Joined: Wed 28. Jul 2004, 18:04
Location: Frankfurt/M Germany
Contact:

Post 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>
Lieber Gott gib mir Geduld - ABER BEEIL DICH
Horst - find me at Musiker-Board
trip
Posts: 657
Joined: Tue 17. Feb 2004, 09:56
Location: Cape Town, South Africa
Contact:

Re: http://www.pennindy.com

Post 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
Clericer
Posts: 40
Joined: Sat 13. Nov 2004, 04:49
Location: NRW Germany

Post by Clericer »

Hallo pico und vielen Dank für deinen Hinweis :D

Clericer
Post Reply