From your user profile page, you want to click 'Organize' then select 'Customize Style' from the drop-down menu. It'll come up with the 'Presentation' tab open, you might need to scroll down the page until you see the 'Custom CSS' tab, click that. The box that comes up is where you paste your CSS code.
Paste in #header { margin-top: 5px; background-image: url(DIRECT URL OF YOUR IMAGE HERE); background-repeat: no-repeat; background-position: top center; padding-top: 225px; }
You can change the value of the padding-top to suit whatever the size of your picture is - this bigger the number, the more everything else is pushed down the page. Make sure to grab the final } as well - and keep the () brackets around the pic's URL, they're part of the code.
no subject
Date: 2018-09-17 08:21 pm (UTC)Paste in
#header {
margin-top: 5px;
background-image: url(DIRECT URL OF YOUR IMAGE HERE);
background-repeat: no-repeat;
background-position: top center;
padding-top: 225px;
}
You can change the value of the padding-top to suit whatever the size of your picture is - this bigger the number, the more everything else is pushed down the page. Make sure to grab the final } as well - and keep the () brackets around the pic's URL, they're part of the code.