The IP address display is not in cPanel, it's in the ZC admin.
Configuration --> Layout Settings --> Footer - Show IP Address status
change it to '0'.
When you change your theme, you are changing the display of the site including the links .... that's what a theme is ... the display of the page elements ....
To get the underline back, in includes/templates/lavender/css/stylesheet.css, change this:
Code:
a:link, #navEZPagesTOC ul li a {
color: #3d1c4c;
text-decoration: none;
}
to this:
Code:
a:link, #navEZPagesTOC ul li a {
color: #3d1c4c;
}
To add borders to the navColumns, in the same file, add this to the end:
Code:
#navColumnOne, #navColumnTwo {
border: 1px #6A328F solid;
}
You can then change the color to your preference.
BrandTim