|
#1
|
|||
|
|||
|
1) Script Title: Photo Album script v2.0
2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...photoalbum.htm 3) Describe problem: Is it possible to take out (delete) the numbers on the navigation links (highlighted yellow color)? My goal is to have it navigate with images and not numbers. I was able to add a background image of a grey bullet for the 1st set of pics, and a background image of a white bullets for the 2nd and 3rd set not clicked on. But I cant delete the numbers from the navigation. It happens automatically. Finally i cheated and turned them white and added padding to the top to get rid of them, but I know this isn't the right way. Can someone help me, my head's gonna explode!! |
|
#2
|
||||
|
||||
|
There is nothing wrong with the way you did it. However, an idle swipe of that area with the mouse button depressed could highlight the now 'invisible' numbers. Here is where in the script that the text I believe you wish to eliminate is generated:
Code:
photogallery.prototype.createNav=function(gdiv, pdiv , ptext){
var instanceOfGallery=this
var navHTML=""
for (var i=0; i<this.pagecount; i++)
Code:
navHTML+='<a href="#navigate" rel="'+i+'">'+ptext[1]+(i+1)+'</a> ' //build sequential nav links Code:
navHTML+='<a href="#navigate" rel="'+i+'">
__________________
WWWWWWWWWWWW - John________________________ Really Show Your Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate |
|
#3
|
|||
|
|||
|
Got it! Thanks so much John. Looks beautiful. =)
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
|
|