2011-03-28, 11:26 PM
2011-03-28, 11:29 PM
Yes but it depends on the theme. With some themes you could simply edit the global.css and others the header templates.
Could you copy the header template of the theme for me(us)?
Could you copy the header template of the theme for me(us)?
2011-03-28, 11:35 PM
Find in your header template <div class="logo"> and change to <div class="logo" align="center">
2011-03-29, 02:08 AM
(2011-03-28, 11:35 PM)WbDev Wrote: [ -> ]Find in your header template <div class="logo"> and change to <div class="logo" align="center">
where exactly do I find the header template? I can't seem to find it. I forgot where it is.
Thanks
2011-03-29, 03:10 AM
admincp->templates&style->templates->Header Templates->header
2011-03-29, 03:43 AM
A forum search for "center" pulls up dozens of threads. Just a tip for future support questions.
2011-03-29, 03:52 AM
As Labroca said,btw do these steps,using CSS would be much better here:
1. ACP>Themes & Templates>Themes>YOUR THEME>global.css
2. In it select second tab,i.e. Edit stylesheet: Advance Mode.
3. In it add somewhere or if you are being confused scroll down till last,after it add code:
And this CSS attribute would make your logo center align.
1. ACP>Themes & Templates>Themes>YOUR THEME>global.css
2. In it select second tab,i.e. Edit stylesheet: Advance Mode.
3. In it add somewhere or if you are being confused scroll down till last,after it add code:
.logo {
text-align: center;
}
And this CSS attribute would make your logo center align.