MyBB Community Forums

Full Version: Center Random Logo
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I use the plug-in Random Logo 1.1 and can't figure out how to center my logo. Anyone know?
This kind of support requires a live example link for the sake of better and fast response.
in general it is
*{
text-align: center;
}

but will it help?
(2018-04-16, 09:08 PM)effone Wrote: [ -> ]This kind of support requires a live example link for the sake of better and fast response.
in general it is
*{
text-align: center;
}

but will it help?
Where exactly should I place this?
Against your logo container which should be having a display: block;
I assume you don't understand what is required to help in this case, which I stated clearly ...
(2018-04-16, 10:04 PM)effone Wrote: [ -> ]Against your logo container which should be having a display: block;
I assume you don't understand what is required to help in this case, which I stated clearly ...

The only change to my header is this plug-in.
(2018-04-16, 09:07 PM)Soldier Wrote: [ -> ]I use the plug-in Random Logo 1.1 and can't figure out how to center my logo. Anyone know?

Sure, @Soldier, it is rather simple to do...


In global.css find:

#logo {
padding: 10px 0;
border-bottom: 1px solid #263c30;
}

Add:
text-align: center;

Example:
#logo {
padding: 10px 0;
border-bottom: 1px solid #263c30;
text-align: center;
}
(2018-04-17, 10:39 PM)vintagedaddyo Wrote: [ -> ]
(2018-04-16, 09:07 PM)Soldier Wrote: [ -> ]I use the plug-in Random Logo 1.1 and can't figure out how to center my logo. Anyone know?

Sure, @Soldier, it is rather simple to do...


In global.css find:

#logo {
padding: 10px 0;
border-bottom: 1px solid #263c30;
}

Add:
text-align: center;

Example:
#logo {
padding: 10px 0;
border-bottom: 1px solid #263c30;
text-align: center;
}

Thank you very much!