Configuring A Portal Homepage

876
3
11-09-2018 08:51 AM
Labels (1)
DonaldBrandon2
New Contributor

I am currently configuring a Portal (Enterprise 10.5.1) homepage and am trying to change the font color of the Featured Maps and Apps text for each featured map or app.  I am attempting this from My Organization -> Edit Settings -> Homepage and then writing out the custom banner.  Is this possible?  I am trying something similar to:

<div>

    <style>

         #featuredMaps {color: #444; font-family: Comic Sans MS; font-size: 14px; font-weight: bold;}

    </style>

</div>

This will allow the font family and font size to change but the color and the weight remain the same.  It seems like it is pretty straight forward but it isn't happening.  Suggestions?

Thank you.

0 Kudos
3 Replies
MargaretJen
Esri Contributor

Hi Donald,

Try this:

<style>
h1, h2, h3, .item .contentWidth h1, #featuredMaps .coverStory span {
font-weight: bold !important;
font-style: normal;
line-height: normal;
font-variant: normal;
font-family: 'Comic Sans MS'
}
#featuredMaps #fHeader h2 {
font-size: 18px;
color: #444;
}
</style>

MargaretJen
Esri Contributor

My bad, I read that wrong. The above would be to change the Featured Maps and Apps header title. 

Use this to change the text for each featured item:

<style>

.galleryLabelContainer {

   color: #444 !important;

   font-family: Comic Sans MS;

   font-size: 14px;

   font-weight: bold !important;

}

</style>

DonaldBrandon2
New Contributor

Thank you for your response.  I will give this a go when I get back to my office next week and will let you know if it helped me.

Regards...

0 Kudos