Hi all,

I'm trying to get a border around the sidebars in the D7 version of the great Marinelli theme, but i'm still searching on how to do so... I've been through all css files but I only got as far as a border around all blocks (content, search, footer, sides,..) and not just the side borders.

It probably is a css markup that needs to be added like

.block .sides{
	border: 1px #000;
	border-style:dotted
}

but what name is it?

Thnx for any help

Comments

bchester’s picture

I am looking for the same thing. Did you figure it out?

naveeddil’s picture

Any Reply to this post plz ...
I need this as well

clcl’s picture

Try this in your css where block-block-7 (you can see this with the help of firebug) gets a dotted border

.block[id="block-block-7"]{
border: solid #000 1px;
border-style:dotted

}

BhumikaVarshney’s picture

Issue summary: View changes
Status: Active » Needs review

Try this in your css for the border on every sidebar block

.sidebar .block{
border: 1px #000;
border-style: dotted;
}

Premanshu’s picture

Title: Border around bloack on sidebars » Border around block on sidebars
gaurav.kapoor’s picture

Status: Needs review » Fixed

Status: Fixed » Closed (fixed)

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