1

I am trying to organize a gallery using figures, but I keep getting this annoying dot or bullet next to them. Are there any solutions like "list-style-type:none" for figures?

enter image description here

Thanks

(had to post a link to picture because I'm not allowed yet)

Afzaal Ahmad Zeeshan
  • 15,669
  • 12
  • 55
  • 103
user3381973
  • 23
  • 1
  • 3
  • Unless you provide us with some code, the only thing I can suggest is to take the white brush and remove the dot from your image. :) `list-style: none` should work though. – Shomz Jun 16 '14 at 15:07
  • You really need to post some HTML and CSS otherwise your question is essentially useless to anyone else. – Marc Audet Jun 16 '14 at 15:07

2 Answers2

1

I suspect that your images are contained in a list and you need to change the list style to none for the relevant list.

Marc Audet
  • 46,011
  • 11
  • 63
  • 83
0

Do this

body ul {
  list-style: none;
}

This would apply a none list style for all the lists under the Body element.

Afzaal Ahmad Zeeshan
  • 15,669
  • 12
  • 55
  • 103