CSS
-Tricks
treehouse :
what would you like to learn today?
Web Design
Web Development
iOS Development
Show search box
Search
Search in:
All
Articles
Forums
Snippets
Videos
✕
Home
Forums
Snippets
Gallery
Videos
Almanac
Demos
Lodge
Navigation 'n' Search
Forums
Illustration by Nick Sirotich
Forums
»
CSS Combat
Getting rid of bullets in footer
goalieman34
Permalink to comment
#
December 2011
Is there an easy fix to make it so the bullets do no show up in my footer? They do not appear in IE and Firefox, but do with Google Chrome.
Thanks for the help.
http://quigleycontracting.squarespace.com/
noahgelman
Permalink to comment
#
December 2011
CSS:
list-style: none
goalieman34
Permalink to comment
#
December 2011
Thanks for the response. I tried that and it didn't seem to work. Any other ideas?
noahgelman
Permalink to comment
#
December 2011
It does work.
Add that to line #806 of your common.css and you'll be fine.
#pageFooterWrapper #pageFooter {
...
list-style:none;
}
goalieman34
Permalink to comment
#
December 2011
Thanks for your help
@noahgelman
noahgelman
Permalink to comment
#
December 2011
No problem, glad you got it worked out
Add a Comment
Thanks for the help.
http://quigleycontracting.squarespace.com/
list-style: none
Add that to line #806 of your common.css and you'll be fine.