Last active
April 30, 2018 21:09
-
-
Save oevans/6190197 to your computer and use it in GitHub Desktop.
To change the link and hover font colors on the ArcGIS Online home page: 1) Go to My Organization > Edit Settings > Home Page tab, 2) In the Banner section, choose the "HTML" radio button and click the "View HTML Source" button (the last button on the Banner box's toolbar), 3) Paste the HTML code below into the text field after/below the existin…
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*Header*/ | |
| <style>#header .nav a, .esri #header-controls ul li a, #header_map_newMap.map_nav a.map_nav_link{color: #fff; text-decoration: none;}</style> | |
| /*Header Hover*/ | |
| <style>#header .nav a:hover {color: #26393d; text-decoration: none;}</style> | |
| /*Footer*/ | |
| <style>.esriItemLinks a, .esriItemLinks a:link, .esriItemLinks a:hover, .esriItemLinks a:active, .esriItemLinks a:visited{color: #26393d;}</style> | |
| /* | |
| To change the link and hover font colors on the ArcGIS Online home page: | |
| 1) Go to My Organization > Edit Settings > Home Page tab, | |
| 2) In the Banner section, choose the "HTML" radio button and click the "View HTML Source" button (the last button on the Banner box's toolbar), | |
| 3) Paste the HTML code below into the text field after/below the existing code | |
| */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Very useful for those who customize ArcGIS Online home page,
Greetings