• Resolved seamoose

    (@seamoose)


    Hi I have just set my new blog https://moosemusic.com but when I (reluctantly) went to IE I was not surprised to see that the top left photo has dissapeared. I am a total hack with code so please enlighten me as to my gaf if possible ??

    any suggestions? better way to do the same thing?

Viewing 7 replies - 1 through 7 (of 7 total)
  • The real ‘gaf’ was modifying the default theme. Suggest you use another theme. I’m surprised you got as far as you did ;’)

    And: ‘total hack’ my gluteus maximus. I almost fainted when I saw your page validated!

    Thread Starter seamoose

    (@seamoose)

    “The real ‘gaf’ was modifying the default theme.”

    Really? It was dumb to use the default theme at all or to modify it?

    Is there no way I can just fix the issue so that I don’t have to spend any time rebuilding an entire new blog or do I really need to install a new theme? And if so what theme do you reccomend? I really just want the plain white with the photo up top left.

    Thanks for any feedback.

    Oh and the fact that the page validated was, I can assure you, a total fluke.

    Thread Starter seamoose

    (@seamoose)

    Any chance of some further feedback? I just want to fix the photo in IE thing so I can not do any more design work (not my thing). https://moosemusic.com

    cheers

    try changing #fff to transparent in your css I don’t know why it would cover it but that may be what is happening

    body {
    background: etc;
    }

    Thread Starter seamoose

    (@seamoose)

    I did this but to no avail. please advise if i was doing what you suggested or not:

    body {
    font-size: 62.5%; /* Resets 1em to 10px */
    font-family: ‘Lucida Grande’, Verdana, Arial, Sans-Serif;
    background: transparent url(‘images/cool_moose4Acopy.jpg’)no-repeat top left;
    color: #333;
    text-align: center;
    }

    #page {
    background-color: transparent;

    text-align: left;
    }

    #header {
    background: transparent url(‘images/Seamus_headsmall.jpg’) no-repeat top left;

    No I just meant for you to change just the body not the page or header divs. Background is a short-hand CSS property below is the longer version it may be worth a try.

    body {
    font-size: 62.5%; /* Resets 1em to 10px */
    font-family: ‘Lucida Grande’, Verdana, Arial, Sans-Serif;
    background-image: url(‘images/cool_moose4Acopy.jpg’);
    background-repeat: no-repeat;
    background-position: top left;
    background-color: transparent;
    color: #333;
    text-align: center;
    }

    Thread Starter seamoose

    (@seamoose)

    freo4cup you are a genius. You should win a Noble Prize. God Bless your cotton socks ??

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Photo dissapears in IE’ is closed to new replies.