Need to move image closer to menu bar - help!


Author Message
Sissy

Posted: 7/29/2009
Quote message 

Hi there,

Just wondering if any of you wise people would know how I can move the image on my theme at www.outtolunch.net.au closer to the menu bar? I'm going a little crazy trying to figure it out!!

Cheers,
Sissy
 
Garry

Posted: 7/29/2009
Quote message 

Open your style.css, find out the following style and increase its first margin entry (which is margin top):

.alignleft img, img.alignleft {
margin:1em 1em 1em 0;
}

Change it to:

.alignleft img, img.alignleft {
margin:2em 1em 1em 0;
}
 
Garry

Posted: 7/29/2009
Quote message 

Sorry, one mistake, you should insert -2 in first entry of margin:

Change it to:

.alignleft img, img.alignleft {
margin:-2em 1em 1em 0;
}