MyBB Community Forums

Full Version: Logo area edit
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
URL: www.oraerp.com
I need to edit logo area and want to divide into blocks like

My site logo will be on same place but i want to add another logo on right side to display some "New Year logo" with link to open another page/thread for new year message.

Added screen shot of the logo area in attachment


right now i was not able to do so just edited logo and added text into it.. refer site URL.

thanks
Can someone help me out for this ?
thanks
Add the image HTML in the header (after the logo), apply a DIV class and fiddle around with the CSS.

The HTML could look like this:

<div class="newyear"><img src="path/to/image.png"></div>

And the CSS (I'm not sure about that, you gotta fiddle around until it fits):
.newyear {
allign:right;
margin-left:0px; /* change this until it fits */
margin-top:0px; /* same here, remove the comments */
}
If it isn't moving try adding "position:absolute;"

Hope this helps Smile
thanks, can you help out where to add this CSS code ?
regards
In a global CSS file, for example global.css.....

The HTML goes next to the logo in the header template.
@maniacmusic
You have the spelling of "align" wrong. In that case, it is considered to have no effect.
(2013-01-22, 06:29 PM)ElectricShock Wrote: [ -> ]@maniacmusic
You have the spelling of "align" wrong. In that case, it is considered to have no effect.

Oops Toungue