Search for:
Sign in
Register
Menu
Articles
Questions & Answers
Download
Documentation
Support
Marketplace
Old Forums
Search:
Search text
Design and CSS styles
Version 7.x
>
Design and CSS styles
>
Can i remove the offline page header - "site is offline"?
View modes:
View mode
Threaded
Flat - newest to oldest
Flat - oldest to newest
Member
ilya-inworkslive
-
2/20/2013 2:27:56 PM
Can i remove the offline page header - "site is offline"?
I want to display a simple image on the offline page, but it has a "site is offline" header. How can I remove that header?
thanks!
Certified Developer 8
Petr Dvorak
-
2/20/2013 3:59:13 PM
RE:Can i remove the offline page header - "site is offline"?
Hi,
you can modify the template (CMSMessages/SiteOffline.aspx) or use CSS to hide the header:
.PageTitleHeader { display: none;}
Member
ilya-inworkslive
-
2/21/2013 3:31:58 PM
RE:Can i remove the offline page header - "site is offline"?
Thanks... i ended up commenting out the line of code in code-behind that sets the title to Error.SiteOffline string. The removed the header.
Member
ilya-inworkslive
-
2/21/2013 3:32:32 PM
RE:Can i remove the offline page header - "site is offline"?
*that removed the header
Top