Hello,
Before asking anything, I have to say that this theme is one of the best for drupal and it was a benediction to find it.
But I've got a problem with the dropdown menu because when I add too many links, it's repositioned lower at the level of the white background so that can't read the white letters.
Please, is there a way to fix this ?
Thank you very much.

Oliver

Comments

onathan’s picture

I've got another issue...
There's a "No content has been created for the home page." on my home page because my content is on a block.
How can I erase it ?
Thank you

dufferin’s picture

Priority: Normal » Critical

Same issue here,

I'm working on 2 sites with same theme, one nice menu is placed where it should, the 2nd is down...

I suck at all css

dufferin’s picture

lengh is sure responsible so I'm sure there is a margin stuff to deal with... any input

jose.rifaie’s picture

i had this problem too so here is the thing
go to
sites/all/themes/andromeda/css/layout.css

change the values below to what suits you

.region-header {
  margin-left:400px;
  height:100px;
  line-height:100px;
  width:540px;
  z-index:1000;

mostly you need to change ''margin-left'' value and ''width value'' to a higher number as example see code below

.region-header {
  margin-left:410px;
  height:100px;
  line-height:100px;
  width:550px;
  z-index:1000;