Hello =)

Does anyone know how to remove the verticle 1px wide line that features to the left of content (when viewed in two column layout: sidebar-first / content) and right of content (when in viewed in three column layout: content \ sidebar-last) in acquia slate? Ive search around and can only seem to find it in styles.css but changing that or writing local.css doesnt effect it? Is it in a block.php file or somewhere??

Attached screenshot to illustrate query - blue arrow points at line

James =)

CommentFileSizeAuthor
screenshot line.jpg52.33 KBkentjames1980

Comments

kentjames1980’s picture

Category: support » task

Anyone got any ideas for this? =)

kentjames1980’s picture

Status: Active » Closed (fixed)

forget it i will live with the line :D

drupleman’s picture

Status: Closed (fixed) » Fixed

Edit the style.css file found in the Acquia Slate folder. Go to "Column Layouts" and navigate to the section that applies to you (e.g., two column or three column). Then, change any "border-left" or "border-right" settings from 1 to 0 px. For example, for three column, change

body.layout-first-main-last #content {
border-left: 1px solid #444;
border-right: 1px solid #444;
padding: 30px;
}

to

body.layout-first-main-last #content {
border-left: 0px solid #444;
border-right: 0px solid #444;
padding: 30px;
}

Status: Fixed » Closed (fixed)

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