Html none click able helP!!?

  • Thread starter Thread starter anna_adams123
  • Start date Start date
A

anna_adams123

Guest
How do i remove clicking on graphic i have life psychic u have to use html i go to photo bucket so is there any easy way to remove clicking plz help!
 
I'm not sure I understand...
Are you wanting to remove the clickable part of the code that photobucket gives you when you select an image?

If so, you need to remove the link tag around the image tag.

change from:
<a href="http://example.com/XYZ">
<img src="http://example.com/image.gif">
</a>

to:
<img src="http://example.com/image.gif">

Hope that helps. Again, I'm not sure what exactly you are asking.
Good Luck
 
An example would be really helpful in answering your question, because your atrocious grammar makes it difficult to figure out what you really want.

In HTML, the <a> tag is used so that you can click on stuff, such as links. If you don't want someone to be able to click on something, just find where you have the <a> tag around the element that you want and remove the <a> tag.
 
Back
Top