To customize the look and feel of nService, go to Admin, Themes, modify the existing themes or create new ones. Enter Cacading Style Sheet (CSS) attributes to the styles textboxes.

Header background image

To display an image in the header area, add the following CSS attribute to the Header Styles.

background-image: url(http://your_website/your_image_folder/your_image.png)

The alternative is to upload the image on Admin, Customize and then enter this URL.

background-image: url(~/Common/HeaderBgImgPage.aspx)

The first approach is prefered because browsers can cache the image file. The latter approach would result in the browser asks for the same image file for every page. Hence you do that only if you don't have access to the server computer to put the image file there.

Browser background image

To display an image on the entire browser window, add the following CSS attribute to the Browser Window Styles.

background-image: url(http://your_website/your_image_folder/your_image.png)

The alternative is to upload the image on Admin, Customize and then enter this URL.

background-image: url(~/Common/BodyBgImgPage.aspx)

The first approach is prefered because browsers can cache the image file. The latter approach would result in the browser asks for the same image file for every page. Hence you do that only if you don't have access to the server computer to put the image file there.
Previous Page | Next Page