I'm relatively new to CSS and very new to Liferay. I have a custom theme I'm trying to build. Just for testing, I was trying to change the title text color for portlets on the page. In my custom.css, I have
.portlet-title {
float: none;
font-weight: bold;
min-width: 50%;
padding: 5px;
text-shadow: 1px 1px #FFF;
color: #800000;
}
I'm assuming this is the correct class, because adding the color in the firefox inspector under this class changes the color. However, when I deploy the theme, it reverts back to
.portlet-title {
float: none;
font-weight: bold;
min-width: 50%;
padding: 5px;
text-shadow: 1px 1px #FFF;
}
if I ftp to the folder for the theme, the changes I made are still in the custom.css. For some reason, when the theme renders in Liferay, it reverts back to the css from before I made the changes. I've tried everything I know to try including clearing the browser cache. Any thoughts?