Hi,
I am using the Acquia Slate theme, but i have the issue of the other pages looking different from the front page, menu wise.
Followed the steps described here: http://drupal.org/node/508154, the menus look the same (rounded edges) but the font is still different.
I attached an image that shows the difference, on the left is the frontpage view, with 'Home' clicked. All the other links underneath it give the result on the right, with a different font style.
Any help with this would be greatly appreciated and would make my day. (and site look good)
Thanks,
JeRyZ
Comments
Comment #1
Lucretia9 commentedChange this in styles.css
body.front #sidebar-first .block h2.title {
/* My change
color: #DFB579;
background: transparent;
font-family: Helvetica,Arial,Verdana,"Bitstream Vera Sans",sans-serif;
font-size: 1.4285em;
font-weight: normal;
padding: 0;
text-transform: none;
*/
color: #DFB579;
}
But this still causes the boxes to be slightly further apart on subsequent pages.
Comment #2
Lucretia9 commentedThe left side of this image shows the front page, the right side shows a page I created. There is a massive gap between the 2 blocks.
Comment #3
elijah lynnYou can add this to your local.css
Comment #4
elijah lynnI want to note that following Lucretia9's method does the reverse of the request as noted by the screenshots. It makes the front page look like all the other pages. Good to know if you want this effect.
Comment #5
greenchuck commentedTo make all the pages look like the front page (opposite of Lucretia9's post)
I did two things to make this work:
1. Copy this into local.css
/*Make not-front blocks look like front blocks*/
body.front #sidebar-first .block h2.title, body.not-front #sidebar-first .block h2.title {
background: transparent;
font-family: Helvetica,Arial,Verdana,"Bitstream Vera Sans",sans-serif;
font-size: 1.4285em;
font-weight: normal;
padding: 0;
text-transform: none;
}
body.front #sidebar-first .block h2.title .first-word ,body.not-front #sidebar-first .block h2.title .first-word{
font-weight: bold;
}
#sidebar-last .block h2.title {
background: none;
font-size: 0.9375em;
font-weight: bold;
padding: 0;
text-transform: uppercase;
}
2. remove "$is_front AND " from lines 7 and 27 in block.tpl
Comment #6
cazam commentedjust found a great fix for this if anyone is looking http://groups.drupal.org/node/21633#comments
CAZAM
http://cazam.eu
Comment #7
jeremycaldwell commented