I just upgraded to 3.1 and green arrows have appeared on every

  • , in places where I don't want them. it will be lots of work to override every specific instance of
  • to remove the background.
    Is there any way round this?

    Firebug analysis of quicktabs for example:

    .content-inner-inner .content-content .inner .content ul li {
    background:url("/sites/all/themes/acquia_marina/images/green-bullet.png") no-repeat scroll 0 2px transparent;
    list-style:none outside none;
    margin-bottom:5px;
    padding:0 0 0 15px;
    }
    ul.quicktabs_tabs li {

    background:none repeat scroll 0 0 transparent;

    display:inline;
    list-style-type:none;
    padding:2px;
    }
    
  • CommentFileSizeAuthor
    #1 arrows.jpg63.16 KBtallsimon
    Support from Acquia helps fund testing for Drupal Acquia logo

    Comments

    tallsimon’s picture

    FileSize
    63.16 KB

    oh and a pic to demonstrate

    Delty’s picture

    What your're showing there in the way of style isn't in the default Acquia Marina 3.1 CSS, which is:

    .content-inner-inner .content-content .inner .content ul li {
      background: url(../images/green-bullet.png) no-repeat 0 2px;
      list-style: none;
      list-style-image: none;
      margin-bottom: 5px;
      padding: 0 0 0 15px;
    }
    

    Are you overriding it in your local.css or something? If so, that's where you'll need to make any changes.

    -=Delty

    Ether’s picture

    I have not override anything in the theme, but have the same problem.
    Way to much arrows :)
    Rollback to 3.0 - everything is ok.

    jeremycaldwell’s picture

    Status: Active » Closed (works as designed)

    The arrows should be displaying for all list items (li) in your main content area. So anything that appears within the node content area and is an unordered list should have the list style with arrow applied to it.

    You can change this on a per instance basis with a little bit of CSS in your theme's "local.css" file. So you just need to write a little CSS to undo the default style for lists and apply your own or overwrite what is there to undo it.