milohuang / reverie

Reverie is a versatile HTML5 responsive WordPress framework based on ZURB's Foundation.
http://theakiba.com/reverie/
MIT License
916 stars 196 forks source link

Points <li> How to remove points before widgets? #118

Closed FaberGames closed 11 years ago

FaberGames commented 11 years ago

Hi! I use reverie 3.0.0. How to remove points

  • before widgets?

  • senlin commented 11 years ago

    via your CSS?

    FaberGames commented 11 years ago

    I didn't find it in CSS of this theme.

    senlin commented 11 years ago

    list items(<li>'s) in an unordered list (<ul>) come by default with dots in front of them. Therefore to remove them you need to do that via your CSS: ul, li { list-style: none; }

    FaberGames commented 11 years ago

    Thanks! I made it, works. I thought that such parameters have to be described in a themes.

    senlin commented 11 years ago

    defaults are set in themes: an unordered list comes with dots, an ordered list with numbers.

    if you want to change that, then you can always do that, just like you can change fonts, colors, etc.