Posted on 11-04-2014 02:10 PM
Hi all,
I feel like I should know how to do this, but how do I make the title font size larger when it is being viewed in Self Service? On the same note, what about font color and/or type? Is this all html code?
Solved! Go to Solution.
Posted on 11-04-2014 03:06 PM
It's controlled by a style sheet.
On your JSS look for
/Library/JSS/Tomcat/webapps/ROOT/stylesheets/osxselfservice
(or whatever the equivalent is for you depending on the server type of your JSS).
LandingPage.css looks like it has most of that styling. I'm not sure off-hand which style governs the App names, but you should be able to narrow it down based on a few parameters, like looking for h1 or some equivalent heading type in the style name.
For example:
div.appListingHeader ul li h1{
Is a good starting point. May not be it (may be it if I'm lucky) but it should be in there with a similar style name.
Posted on 11-04-2014 03:22 PM
(Un-edited it ;)
Here is how you could do it for just individual policies.
Not sure if they reverted back but in 9.4 or 9.5 they removed HTML formatting support and switched it to Markdown.
In Markdown the only way you could set font "Size" is using the header syntax. you are really setting different HTML header sizes and it will bold it.
You put a "#" in front of the text you want to set the header level to. The more "#"s you add, the higher the header level and thus the smaller the text gets.
Posted on 11-04-2014 03:06 PM
It's controlled by a style sheet.
On your JSS look for
/Library/JSS/Tomcat/webapps/ROOT/stylesheets/osxselfservice
(or whatever the equivalent is for you depending on the server type of your JSS).
LandingPage.css looks like it has most of that styling. I'm not sure off-hand which style governs the App names, but you should be able to narrow it down based on a few parameters, like looking for h1 or some equivalent heading type in the style name.
For example:
div.appListingHeader ul li h1{
Is a good starting point. May not be it (may be it if I'm lucky) but it should be in there with a similar style name.
Posted on 11-04-2014 03:22 PM
(Un-edited it ;)
Here is how you could do it for just individual policies.
Not sure if they reverted back but in 9.4 or 9.5 they removed HTML formatting support and switched it to Markdown.
In Markdown the only way you could set font "Size" is using the header syntax. you are really setting different HTML header sizes and it will bold it.
You put a "#" in front of the text you want to set the header level to. The more "#"s you add, the higher the header level and thus the smaller the text gets.
Posted on 11-04-2014 03:25 PM
I saw your original response via email before you edited it… I think it depends on what you're trying to change.
If you want to just simple make the description formatted a certain way, markup is now the way it's done. If you're looking to uniformly change the way text displays within the general Self Service app (not simply descriptions that pop up in that dialogue box) then you'd want to make the changes to the stylesheet.
Posted on 11-05-2014 01:37 PM
@chriscollins, thank you for that note. It was not exactly what I was looking for, but I can definitely use it!
@emilykausalik, I will look into the stylesheet and see if that contains what I need. I will post back if I find it. Thanks!
Posted on 11-14-2014 09:01 AM
@emilykausalik][/url][/url, @chriscollins][/url][/url, That looks like the answer I was looking for I was hoping I could edit this for an individual policy listing. My answer is that yes, I can edit the description of a policy to display text differently in self service, but I am unable to edit how policy titles are displayed without affecting all policies in self service. Thank you both for your help!
edit: clarification