the first image has a inline style of "position: absolute; top: 0pt; left: 0pt; display: list-item; z-index: 21; opacity: 1;"
while rest get display:block...

On FF, the first list item has a bullet... where is the inline css set for views_cycle to change this?

Comments

xyoni’s picture

you could also just add your own css to set list-style: none for now :-)

armyofda12mnkeys’s picture

yup didnt need it, css'ed out bullets. Just thought I'd point it out to help fix it cause if all the others have it, at least it should be consistent.

modctek’s picture

Aargh. This issue is killing me. By my guess this is probably a theming issue, but I'm marking this in case anyone can provide me helpful hints to stamping out this "bug" in using the "Tapestry" theme. My chief problem seems to be isolating the "li" element in views cycle without killing bullets in the rest of my website.

Update: I knew if I kept noodling at the CSS I would eventually isolate it -

.views-cycle ul li {
   list-style-type:none;
   margin:0;
   padding:0;
   }

Changing the list-style-type and margin properties eradicated that pesky bullet.

valariems’s picture

Thank you! I had the same issue, and had thrown the kitchen sink at every css selector I could find. I appreciate you posting your solution. It worked for me. (I'm using a custom Fusion subtheme, so it's not theme-specific.)

Crell’s picture

Status: Active » Fixed

Actually it is partially theme specific. Garland, for instance, adds a bullet using of all things a background image.

I've committed a modified version of #3 that handles the common case, but some themes may still show bullets in some cases. That's the theme's problem at that point.

Thanks!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.