div.slide custom styling

Your Ad Here

I would like to modify the default position style for the "slide" class from "top: 0" to another value for "top". Changing the ddblock.css stylesheet won't affect this because the style is inline with each div with the class "slide".

The reason for this is that I have the container smaller than the images and the overflow hidden (which I want), but I want the middle portion of the image to show in the container window instead of just the top portion of the image which is currently showing.

Any help on how I can modify that CSS element?

Thank you!

I forgot to mention that this

I forgot to mention that this is for Drupal 7.

Re: div.slied custom styling

The inline style comes from the cycle plugin which is the JavaScript plugin used for the slideshow functionality.

You can still override the inline css by using !important in the css file

example:
div.slide{
top: 10px!important;
}

Hope this helps you further, please let me know

Wow! Thank you! I had never

Wow! Thank you! I had never heard about the "!important" command. That is going to make life a lot easier. This solved the issue I was having. Thanks so much for your help!