It seems that Corporate Clean is incompatible with language icons module (http://drupal.org/project/languageicons) as all language links and buttons get a line break after the inserted flag icon.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

snuggles99’s picture

gtsopour’s picture

Component: User interface » Code
Assigned: Unassigned » gtsopour
Category: feature » bug
Priority: Normal » Major
Issue tags: +Corporate Clean responsive theme
gtsopour’s picture

Priority: Major » Critical
RobertoGA’s picture

It may not be the best choice, but it works... use this css code

a.translation-link img{
display: none;
}

snuggles99’s picture

Hello RobertoGA,
thank you for your workaround idea, however it does not work for me (see attached photo).

Would you have another idea?

regards
Stefan

snuggles99’s picture

Issue summary: View changes
FileSize
138.98 KB
snuggles99’s picture

FileSize
320.98 KB

I found the solution (for me):

In file: style.css
the line: a img { border:none; outline: none; display:block; overflow:hidden; }
the "display:block" should be removed, so that the line becomes:

a img { border:none; outline: none; overflow:hidden; }

On my website the removal of this did nothing negative, but now laguage icons (and printer friedly icon, too) are now in line with the text.

regards
Stefan

Derathor’s picture

It worked, thanks Stefan! (snuggles99)
I've been trying to troubleshoot the problem for hours on end. This was a life saver!