Hello, I would like to hack Views produced CSS but I am not sure what I am dealing with, especially with my limited CSS skills. For example, I created a Recent Hit block. The label "Hit" and the actual count are in two lines, where I want them to be one line with float-left.
Firebug tells me: class="view-label view-label-node-counter-totalcount" I can't find anything like this in any css file. As far as I could see, there is nothing in views_ui.module, too.
Drupal standard procedure is to provide a lot of CSS hooks in case you may need them, even if the default system doesn't use them. view-label and view-label-node-counter-totalcount are not defined anywhere by default, and so their presence does nothing. They're there entirely for your convenience to add to your own CSS file for your theme.
--Larry Garfield
On Thu, 7 Jun 2007 10:49:13 -0400, "A-NO-NE Music" madflute@anonemusic.com wrote:
Hello, I would like to hack Views produced CSS but I am not sure what I am dealing with, especially with my limited CSS skills. For example, I created a Recent Hit block. The label "Hit" and the actual count are in two lines, where I want them to be one line with float-left.
Firebug tells me: class="view-label view-label-node-counter-totalcount" I can't find anything like this in any css file. As far as I could see, there is nothing in views_ui.module, too.
--
- Hiro
Hiroaki Honshuku, A-NO-NE Music, Boston, MA http://a-no-ne.com http://anonemusic.com
-- [ Drupal support list | http://lists.drupal.org/ ]
Larry Garfield / 2007/06/07 / 11:10 AM wrote:
Drupal standard procedure is to provide a lot of CSS hooks in case you may need them, even if the default system doesn't use them. view-label and view-label-node-counter-totalcount are not defined anywhere by default, and so their presence does nothing. They're there entirely for your convenience to add to your own CSS file for your theme.
Wow! Nice! Clever!
Worked great. Thank you so much!