Topic: Logo in middle

I want the logo in the middle and no "Image Hosting" Test (see here, this text).
Here is a screenhot. So be it.
We can make this so? My attempts have failed ... sad

Thx,
Gullu

Thumbs up

Re: Logo in middle

Yes it is.
First the easy part. The image hosting text.
Open config.php and change this:

define('TAG_LINE', 'Image Hosting'); // Your tagline (for doctitles and logo)

to:

define('TAG_LINE', ''); // Your tagline (for doctitles and logo)

See the empty ' '
This probably isn't the best way to do it. But it is the easiest. (If you want the hard way just say so and i'll post it)

And now to the the image. Open the file called estilo.css
Find the bit called TOP
In div#top add this :

text-align:center;
    margin-top:0px;
    margin-bottom:0px;

It should now look like this:

/* TOP */
div#top {
    padding: 2em 1em 1.5em 1em;
    margin: 0 auto;
    min-height: 4em;
    width: 57em;
     text-align:center;
    margin-top:0px;
    margin-bottom:0px;
    }

One note. after you added this css code to the css, the tag line will look ugly if you leave it there.
Hope this helps.

Thumbs up

Re: Logo in middle

Thank you very much has that helped me a lot. smile

Thumbs up

Re: Logo in middle

Happy i could help. (again) smile

Thumbs up

Re: Logo in middle

I have today tested, unfortunately, it does not work completely. sad
Here a schreenhot with the problems: http://img5.imagebanana.com/view/bhahyj … oissue.png
1.) My logo is not in the middle sad
2.) And text wenn make a error like 404 not found is right and not in the middle.

EDIT: Another problem:) How can I fix the menu bug? See here: http://img5.imagebanana.com/img/09crjgn … issue2.png

Please help me
thank you very much!

Last edited by Gullu (2009-10-14 10:56:36)

Thumbs up

Re: Logo in middle

Gullu wrote:

I have today tested, unfortunately, it does not work completely. sad
Here a schreenhot with the problems: http://img5.imagebanana.com/view/bhahyj … oissue.png
1.) My logo is not in the middle sad
2.) And text wenn make a error like 404 not found is right and not in the middle.

EDIT: Another problem:) How can I fix the menu bug? See here: http://img5.imagebanana.com/img/09crjgn … issue2.png

Please help me
thank you very much!

I'm not really sure how this happened. in my local test i used an unaltered installation of cheverto. Some of your own mods may interfere.
I'm currently think this is a div problem ( you placing the text wrong or not closing a div) but i'm not 100% sure on that. Same with the menu.

Thumbs up