Hi Guys,
After getting my head around omega and drupal im building my first full site with drupal. I am doing well with most styling and layout and modules etc but cant seem to implement list styling.
I have ul and li in my blocks in various regions and despite styling them in default my styles never show. All my other styling works fine but I just cant seem to get my head around making an unordered list to show its bullets.....
My assumption was that there is a style somewhere that is more specific than the one I am creating hence the no show, but I cant find it even with firebug. Im obviously missing something totally simple as I cant seem to find this issue anywhere. Please help! I am putting the css in my subtheme alpha-default.css
Kind Regards
Paul
Comments
argh ignore me
after struggling for ages i just commented out all my list css and now it works.....lol. No idea what I did but the problem was clearly me! LOL.
Thanks
Paul
I experienced this same
I experienced this same problem, and it was actually the padding:0 setting in the alpha-reset.css file. I put this in the global.css file of my subtheme and now bullets show up:
ul {padding:1em;
}