Why does this modules skin.css file get inserted after my theme's CSS and how can I move it up so I can override the class .jcarousel-container-horizontal?
Thanks
Why does this modules skin.css file get inserted after my theme's CSS and how can I move it up so I can override the class .jcarousel-container-horizontal?
Thanks
Comments
Comment #1
mfer commentedHow are you using the view in your setup? Are you embedding it somewhere?
I ask because the skin.css file is supposed to come before the themes css unless something special has been done.
Comment #2
eft commentedHi Matt,
I'm using the view in a header block and a Zen sub-theme.
When I set the Views style Skin option to Custom the skin.css is still the second last style sheet referenced; however, at least I can configure the carousel dimensions to my needs.
The other issue that slowed me down was the affect of default styling on list items. This was rectified by following the advice of webthingee and adding:
to my skin.css. Maybe this should be added to the jCarousel module.
Thanks for all your great work on this and other modules. Really appreciated.
Comment #3
novovox commentedI am having the same problem. Has anyone been able to figure this out?
I am using the Fusion theme and I am styling with fusion-starter-style which is also the second-last stylesheet to be referenced. Can't figure out why it won't override skin.css.
Any helpers?
Comment #4
eft commentedFor me this issue was related to IE's
tag limitation issue. See http://drupal.org/node/648254#comment-2338452Comment #5
mfer commented@eft This is a known ie problem. Most of us build using FF so we don't see the issue during build out.
@novovox what browser are you having the issue in?
Comment #6
novovox commentedI am using FF.
Solved using eft #4 post. Not ideal but it works for now.
Thanks.
Comment #7
maddentim commentedsame issue here with FF. In Firebug, i see my css edits, but they are overridden by the module's css.
Comment #8
AdrianB commentedskin.css is loaded by the wrong call (afaik) in the jCarousel module. Instead of
drupal_add_css($skin_path, 'module');they usedrupal_add_css($skin_path, 'theme');.I've explained it in more detail here in #648254: Use "module" instead of "theme" when adding skin.css .