Shape 5

Joomla Templates => Gamers - Club => : firebride October 14, 2013, 08:43:54 AM



: Center Logo
: firebride October 14, 2013, 08:43:54 AM
How can I center this logo?

Adjusting the margins does work, but then it does not display correct on mobile devices without scrolling horz.

Sorry, cannot provide local link to my site.

Thanks in advance


: Re: Center Logo
: jonahh October 14, 2013, 01:18:51 PM
If you want to center an HTML element it needs a width and the a margin as follows.  Change width as desired but just as an example:

width:300px;
margin:0 auto;



: Re: Center Logo
: firebride October 14, 2013, 11:50:38 PM
thanks jonahh, I have made the adjustment in template.css and it looks like this:

.s5_logo {

/*    float: left;
    height: 70px;
    cursor: pointer;
    margin-top: 6px;
    margin-bottom: 6px;
    margin-left: 11px;*/

    margin:0 auto;
    width: 250px;
}

It still does not center, am I missing something?


: Re: Center Logo
: jonahh October 15, 2013, 12:37:28 PM
Can you post a URL of your site so I can take a look at this for you first hand?


: Re: Center Logo
: firebride October 16, 2013, 02:49:49 AM
Herewith the link: http://www.colnera.co.za/testing101/

Your thoughts?


: Re: Center Logo
: jonahh October 16, 2013, 12:51:14 PM
Hmm not sure why its not working but you could open up the index.php file and put center html tags around the logo and this should do it

<center>
logo here
</center>


: Re: Center Logo
: firebride October 16, 2013, 11:56:16 PM
Thanks Jonahh