To add your image or company logo to your website created in Wordpress, please follow these steps:
1.Using an FTP client (eg. Filezilla or Netfirms File Manager), upload your image file to the specific theme image folder
Eg. If you are using the default netfirms1 theme you would upload your logo to wp-content/themes/netfirms1/images
2. Login to the Netfirms Control Panel at https://controlpanel.netfirms.com3. Click Applications
4. Click WordPress
5. For the WordPress installation you wish to administer, click the corresponding Admin link to login to
6. Click Presentation
7. Click Theme Editor
8. Edit wp-content/themes/netfirms1/style.css as follows:
FROM:
#header { background: #39393A url(images/bg_header.gif) repeat-x;
height: 95px;
}
TO (where nameofyourimage.gif is your image file):
#header { background #39393A no-repeat right url(images/nameofyourimage.gif);
height: 95px;
}
NOTES:
(i)In the above example, repeat -x was changed to no-reapeat ,
(ii)Postition can be changed from right to left or center depending upon where you want your image to display
(iii)Height can be adjusted according to the size requirement for your image. The above example is ste to 95px.
9. Click Update File to save the changes