IMAGE linked to homepage

albertoMONO / 2011-04-27 18:17:02   

Hello,
I just would like to ask how to link my logo image on top left side of the screen to my homepage.
my webpage
www.monoatelier.com
Thanks

blameme / 2011-04-28 04:44:39   

Like this: W3 schools - Image link

albertoMONO / 2011-05-09 08:55:29   

I got it,
thanks a lot!

Could you also help me to learn how to set right visualization on explorer because someone told me that with firefox and safari its ok but with explorer is not!

thanks

albertoMONO / 2011-05-09 08:56:25   

I meant right visualization of the website!
tks

Vaska A / 2011-05-09 08:56:32   

how to set right visualization

What does this mean?

pernin / 2011-05-09 11:23:29   

It looks the same on IE8 to me, except for the favicon in the page title, which is very minor detail

albertoMONO / 2011-05-19 05:59:47   

I meant that I don't know why, if I have a look to my website on safari and firefox is ok, but with explorer is not!
SO could you please help me to set up this problem?

thanks

blameme / 2011-05-19 06:28:44   

You´ll have to be more specific, what is it that looks different?

That said, different browsers render things differently, especially IE, which is why it is the most hated browser worldwide. Just google it for more specific information.

Web is not print, you stuff will never look EXCACTLY the same in all browsers, so my advice is if it works, then just run with it.

albertoMONO / 2011-05-29 10:39:32   

Ok I got it, so probably with IE8 it works perfectly!
Anyway the main problem I have is that the visualization dont follow the screen resolution and sometimes is not enough ti see all the things I put on the mainpage (like the contacts, as the last things I see down in the right side menu column!
Could you pleas help me to find out how to visualize all the page with all the screen resolutions.

rickykappa / 2011-05-30 03:43:47   

in your style.css you have:
#menu {
width: 215px;
overflow: auto;
top: 50;
bottom: 50;
    left: 50;
position: fixed;
height: 150%;
...

first thing to do is to change height: 150%; to height: 100%; (or even less: for example I have 80%)
otherwise with small screens you will never get the scrolling bar called by overflow: auto;.
also you should add px to your numeric values to make them work properly.
and you can erase the useless bottom: 50;
these are all basic css rules, there are those red useful threads, good for everybody...
;-)

This thread has been closed, thank you.