CSS:
#logo-container {
position: fixed;
right:5px;
.home-page {
/* homepage style */
}
.content-page { /* <-- I want to change the $element's class to this class */
margin-top: 78px;
}
}
JQuery (to change #logo-container
's class to .content-page
):
jQuery(this).prev('#logo-container').attr('class', '#nav-container .content-page');
This doesn't seem to be working...Any ideas?
EDIT: The issue seems to be in how I reference .content-page
. I've tried the following and none seem to work:
'content-page'
'.content-page'
'logo-container content-page'
'#logo-container .content-page'
'#logo-container.content-page'