By doomed on
This is a question related to the Pixelgreen Drupal theme - http://alldrupalthemes.com/pixelgreen.html .
I'm using the i18n module which gives a block for language selection. The problem is that this block doesnt look very nice on Pixelgreen so i'm looking for help on how to fix this.
Here are some screenshots:
Language block on Garland (looks good):
http://img237.imageshack.us/my.php?image=garlandgoodlanguageblocph9.jpg
Language block on Pixelgreen (looks very bad):
http://img257.imageshack.us/my.php?image=pixelgreenweirdlanguagewy8.jpg
Regards.
Comments
Hi, the problem is that the
Hi, the problem is that the stylesheet is trying to theme the list as a menu. If you provided a link I could have given you some code but if you know a little CSS, you have to style the unordered list in your block, something like;
.block-somelanguageblock ul li {
padding:1px;
margin:0;
}
-------------------------------
peach from All Drupal Themes
-------------------------------
http://www.sooperthemes.com/#-Drupal-Themes
Hi! I have this site running
Hi!
I have this site running locally so i can't put a link but here's the pertaining code (copied from a Firefox output):
What change do you suggest? And where (core style or pixelgreen theme style) ?
.block-i18n .item-list ul li
.block-i18n .item-list ul li {
padding:1px;
margin:0;
}
Try this, I haven't tested it though.
-------------------------------
peach from All Drupal Themes
-------------------------------
http://www.sooperthemes.com/#-Drupal-Themes
Hi
This doesnt do anything :(
garland
Here's output code taken when using the Garland theme:
And btw, my problem remains because i dont know what to change. So any help is appreciated.
Well, i'm almost there. By
Well, i'm almost there.
By removing image borders and changing "display: block" to "display: inherit" on the theme's style.css, it looks better now:
Two problems remain though, check screenshot:
http://img503.imageshack.us/my.php?image=2links1rowqz1.png
1) the flag and the word are two different links, so the little tab on the left gets duplicated
2) the underline below navigation links dont apply correctly to the Language block.