Jump to content

Tiny indented rectagle showing on site.


yelhsa

Recommended Posts

Sorry in advance for my lack of knowledge. I am not trained and I know almost zero about site building.

 

On my site there is a tiny rectangle that is showing up on a drop down menu... It hasn't always been there. I'm pretty sure it showed up after upgrading to the newest Internet Explorer. I've been staring at it and finally decided to figure out what it is doing there....

Please, any and all help will be greatly appreciated. The rectangle is not hindering the site, it is just an eye sore.

Thanks in advance!

Yelhsa

 

See Attachment for Screenshot.

 

Link to Site:

www.georgiafarmandforest.com

 

Coding (this is the drop down menu part of the coding, I don't know if you need more than this.... If so, does viewing the source work?):

Menu1=new Array("Home","index.php","",0,20,140);

 

Menu2=new Array("Counties","#","",11,0,140);

  Menu2_1=new Array("Bartow","bartow.php","",0,20,140);

  Menu2_2=new Array("Carroll","carroll.php","",0,20,0);

  Menu2_3=new Array("Catoosa","catoosa.php","",0,20,140);

  Menu2_4=new Array("Chattooga","chattooga.php","",0,20,140);

  Menu2_5=new Array("Dade","dade.php","",0,20,140);

  Menu2_6=new Array("Floyd","floyd.php","",0,20,140);

  Menu2_7=new Array("Gordon","gordon.php","",0,20,140);

  Menu2_8=new Array("Murray","murray.php","",0,20,140);

  Menu2_9=new Array("Polk","polk.php","",0,20,140);

  Menu2_10=new Array("Walker","walker.php","",0,20,140);

  Menu2_11=new Array("Whitfield","whitfield.php","",0,20,80);

 

Menu3=new Array("Resources","resources.php","",0,0,140);

 

Menu4=new Array("Contact Us","contact.php","",0,20,140);

 

Menu5=new Array("Submit Land Wanted","submit.php","",0,0,160);

 

 

[attachment deleted by admin]

Link to comment
https://forums.phpfreaks.com/topic/209818-tiny-indented-rectagle-showing-on-site/
Share on other sites

That image is most likely generated by the Javascript you have.

 

var Arrws=['tri.gif',5,10,'tridown.gif',10,5,'trileft.gif',5,10];	// Arrow source, width and height

 

actually it can be turned off with the line right here:

var ShowArrow=1;		// Uses arrow gifs when 1 <--- Set to 0

If you look in your code for that line, it is already in there. All you have to do is change the number from 1 to 0.

 

var ShowArrow=1;      // Uses arrow gifs when 1

 

should be

 

var ShowArrow=0;      // Uses arrow gifs when 1

That's it!

Thanks you so much!!

 

Thank you to both of you hcdarkmage and mgallforever!

 

I really appreciate you guys working with my lack of knowledge and not getting grumpy like I have seen on other forums!

 

Thanks again! 1,000 karma points to each!

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.