I have read topics on this, and all of them suggest editing the CSS to allow it. I don't know CSS, and I use multiple themes on my site, and do not wish to change all of them. Is there a module that will put a border or some kind of shading around a permenent stickied post at the top of my site? It is the welcome message, and I want it to stand out.

Comments

skor’s picture

For example, using bluemarine, configure the mission to be shown under admin...themes...configure

Enter your message under admin...settings...general...Mission

Dries’s picture

The first post on the drupal.org front page is a regular forum topic node that is marked 'sticky'. Then, the drupal.org theme themes sticky posts differently (i.e. it adds a border). The theme has to support it.

pbarnett’s picture

You can add a section to the theme's style.css as follows :-

.sticky {
	border: 1px solid blue;
}

That should give the desired effect. You could alse set a different background colour with

.sticky {
	border: 1px solid blue;
	background-color: aqua;
}

Hope this helps...