• Hi,

    I’ve been trying to get my head around the CSS and how it displays my logo on my site https://www.writingnomad.com/. What I have done so far is create my new logo and replaced the original one with mine, keeping the name the same for ease of use.

    However, I cannot see my logo in my header, no matter how I chop and change the stylesheet code.
    This is the code I currently have:
    #logo {
    float:left
    top:0px;
    width:150px;
    height:150px;
    z-index:2000;
    position:relative;
    background: url(../images/logo.png) top center no-repeat;
    }
    The size of the image is correct and so is the name but other than that, I’m so lost. Could anybody help me please to get this fixed?

    Thank you
    Monika

Viewing 7 replies - 1 through 7 (of 7 total)
  • 2 things – add in a ‘ on each side so: ‘image/xxx/xxx’

    Also… try it without the ../

    Thread Starter thewritersmanifesto

    (@thewritersmanifesto)

    Thanks SageMichael but non of these tips helped. I’m not sure what is the problem. ??

    background: url(../images/logo.png) top center no-repeat;

    why are you using a UNIX path statement?

    Put the image in a folder, and call normally.

    wp-config.php
    /images/
    logo.png

    background: url(/images/logo.png) top center no-repeat;

    removing the / makes it look in the current theme’s image directory. Is that where you have it?

    /images/logo.png == https://www.domain.com/images.logo.png

    ../images/logo.png == one directory up from web root

    images/logo.png === wp-content/themes/mythemes/images/logo.png

    Thread Starter thewritersmanifesto

    (@thewritersmanifesto)

    Hi Whooami,

    I’m not sure what you mean by LINUX command. I just did what was said by the creators of this theme in the instruction manual. My logo is situated here https://www.writingnomad.com/wp-content/themes/traveler/images/logo.gif so what do I need to change where to make it show? Do I just insert this whole URL where the logo brackets are in the css, or do I need to change something else?

    Sorry to be a pain in the butt but I really don’t understand all this coding stuff.
    Cheers
    Monika

    Thread Starter thewritersmanifesto

    (@thewritersmanifesto)

    Oops I meant UNIX command. Sounds like Chinese to me.

    I found your problem.

    change .png to .gif

    well yeah ?? sage is right, your css says its a .png, and its a .gif

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Cannot See My Logo’ is closed to new replies.