I'm having trouble properly editing the CSS for a block that contains content for the Views Ticker module.
Here's what I currently have:
#block-views-rotating-news-block{
border:#F00 thin dotted;
float:left;
left:0%;
width:30%;
}
The content should be WITHIN the block
If I remove the width variable:
#block-views-rotating-news-block{
border:#F00 thin dotted;
float:left;
left:0%;
}
I achieve this result:
It's close to what I want, but I need to make the block smaller by setting the width. Whenever I try to define the width, the block ends up looking distorted. Any advice on how to achieve this?