johnw335 / johnw335.github.io

MIT License
0 stars 0 forks source link

Index page #2

Open jabbowaki opened 9 years ago

jabbowaki commented 9 years ago

Hey John,

I think the reason the index isn't showing css is because it's referenced incorrectly. Right now you have something like this:

    <link type="text/css" rel="stylesheet" href="http://johnw335.github.io/stylesheets/index-stylesheet.css"/>

And you want something more like this

    <link type="text/css" rel="stylesheet" href="stylesheets/index-stylesheet.css"/>

Hope that helps.

jabbowaki commented 9 years ago

OH OH so when you do that, the profile picture gets distorted. I sort of tinkered with it ahem, but what I got to work was changing this

#profile_pic {
  height: auto;
  width: 50%;
  padding-left: 5%;
  padding-top: 5%;
}

to this

#profile_pic img{
   height: auto;
  width: 50%;
  padding-left: 5%;
  padding-top: 5%;
}