A couple months ago I made a post about customizing the cloud gateway.The real name for that product is Citrix Receiver for Web and is part of the StoreFront Express. Digging deeper in the Receiver for Web I found that it is really easy to modify the appearance of that site. You don’t have to change all the original files. Only just one.
Terry Duchastel has made a very clean and easy how-to about branding the site. I’ve borrowed some elements from that post and put it in this simple CSS He has made a couple of links in the logon page for helpdesk purpose. That part is skipped (because I don’t want to change the default html structure). The only thing with that type of branding, is that it will be gone when an upgrade is performed.
Citrix made the structure of the site so that it first reads it’s default CSS and at the end all custom settings. Due to this way we only need to change the file named: custom.style.css
There is always a demand for the Fokke and Sukke Web Interface, that I made just for fun a long time ago. I don’t have the sources for this anymore. This is not gone happen again .
Paste this CSS structure into C:\inetpub\wwwroot\Citrix\StoreWeb\contrib\custom.style.css (Assuming default installation) and refresh your Receiver or Web
All images are hosted on my site. I know that isn’t the way it should be, but it’s more to see how easy it is to change the appearance.
/* Edit this file to customize the User Interface by overriding the existing CSS Styles. * You can use browser development tools to identify the CSS classes you want to customize. * * This file is downloaded from www.jeroentielen.nl The costumizations are simple and only change the appereance * of the website. */
/* Background image. */ body {
/* Logon box font color, size and alignment. */ #logonbox-logonform label{
/* Messages Box. (Keep this font color the same color as the logon box. */ .ctxsui-messagebox {
/* Image/Logo left from logon box. */ #logonbox-logoimage {
/* The light bar across the middle at the logon screen. */ #logonbox-innerbox {
/* The vertical bar at the left from the light bar at the logon screen. */ #logonbox-container {
/* The image/logo at the top left when logged on. */ #header-logo { float:left; background-image:url(“https://www.jeroentielen.nl/wp-content/uploads/2012/05/1338371753.png”); background-repeat:no-repeat; float:left; width:149px; height:90px; margin:20px 0px 0px 20px; }
/* The font color of the top welcome message and username. */ #resources-header #header-userinfo {
/* The font color of the top log off link. (Keep this the same as the top welcome message) */ #resources-header #header-logofflink {
/* The font color of the application links. */ .myapps-name {
/* The background frame around each application. */ .myapps-icon { |
You are great made my life easier!!