Closed (fixed)
Project:
Acquia Slate
Version:
6.x-1.4
Component:
Code
Priority:
Normal
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
1 Oct 2009 at 20:48 UTC
Updated:
6 Jan 2010 at 03:30 UTC
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 =)
| Comment | File | Size | Author |
|---|---|---|---|
| screenshot line.jpg | 52.33 KB | kentjames1980 |
Comments
Comment #1
kentjames1980 commentedAnyone got any ideas for this? =)
Comment #2
kentjames1980 commentedforget it i will live with the line :D
Comment #3
drupleman commentedEdit 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;
}