I don't like how the vote widget interferes with what my users have entered in their nodes. (see http://www.scriptspot.com/ )

I've been thinking it might be better if the widget displayed next to the title. Where is the widget placement defined? Presumably I'd need to override something in my theme - has anyone done this already and have some tips to share?

Thanks,
Chris

CommentFileSizeAuthor
#2 idea.jpg37.63 KBjgreep

Comments

vanderlip’s picture

I have also been working on this, unsuccessfully so far. Any ideas?

jgreep’s picture

StatusFileSize
new37.63 KB

I'm using Artisteer for the rough layout, but got it to work by setting a left margin on my node.

.art-article .node-content,
.art-PostFooterIcons {
        margin-left:57px;
}

I used the campfire theme that I posted. It has a float: left property to get it out of the flow of the document.

.vud-widget-campfire {
  float: left;
}

Then I had to offset just the widget.

.art-article .vud-widget-campfire{
        margin-left:-57px;
}

See the attachment.

Flying Drupalist’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

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