What can I do to align the text in the middle of the image so that it looks like the attached image.

Hi,

Try to add the following custom css code:

#logowrap .zen-module-body h2 img + a {
    position: relative;
    top: -40px;
}

Okay, this is good but just one more thing. I need the text a little closer to the left. Too much space between the image K and the first n in the text.

So vertical alignment is perfect, just need to horizontal align the text a little more to the left.

Change the code into:

#logowrap .zen-module-body h2 img + a {
    position: relative;
    top: -40px;
    left: -15px;
}

and adjust top and left values to your needs.

Cheers
Joshua

Write a Reply...
You need to Login to view replies.