Hi I currently have the "clean home" theme by 1.2.0 Mid Mo Design and I am looking to insert a picture header on the top of the page. Is anyone familiar with how to go about doing this? I am a complete newbie to this or web designing on the whole so I am sorry in advance if this question has been resolved but after searching for an answer I haven't found a solution for this particular theme. Any help would be greatly appreciated. Thank you so much.
grvpande
Member
Posted 1 year ago #
you can do it by CSS or by coding also, If you want just a background image please choose CSS..
you'll see a CSS in style.css
#header {
border-bottom:1px dotted #CCCCCC;
float:left;
margin:0;
width:900px;
}
now you can add any image for the background, you can choose an image of width 900px or less.
#header {
background: #color url('images/imagename') no-repeat;
border-bottom:1px dotted #CCCCCC;
float:left;
margin:0;
width:900px;
}