Hello, I would like to upgrade my current Kunena v1.7.2 to the newest version but I have a lot of custom css. Can anyone tell me if it will still work on the newest version or has enough been changed that I'll have to re-figure out my edits with new css classes?
Thank you to anyone who might be able to clarify this some before I upgrade.
Most of my changes were because the template I use is a narrow fixed width and the stock Kunena css didn't really fit into our narrow template. However, some of my edits were also to remove some functionality to fit my clients needs. The website is only for about 12 older gentlemen that needed it very simplified, so there is only one single topic that they use in the message board and that is all.
Here is the site with the custom css:
www.lancernafl.com/messageboard
Here is the custom css: (I put it in a separate css file so that I did not have to edit Kunena's original files.)
Code:
/* Kunena Forum Fit Fixes */
/* Kunena Forum Fit Fixes */
/* Kunena Forum Fit Fixes */
/* Kunena Forum - Width Fix */
#Kunena {
min-width: 590px !important;
}
/* Kunena Forum - Topic View Width Fit Fixed - Word Wrap for Post Buttons */
#Kunena div.kmessage-buttons-row {
white-space: normal !important;
line-height: normal !important;
height: auto !important;
}
/* Kunena Forum - Topic View Width Fit Fixed - Smaller Width Left Column */
#Kunena td.kprofile-left {
width: 150px !important;
min-width: 150px !important;
}
/* Kunena Forum - Topic View Width Fit Fixed - Smaller Width Left Column */
#Kunena .klist-actions-forum {
width: 100% !important;
}
/* Kunena Forum - Profile Left Colmn and Avatar Resize to Fit Right Column Fixes */
#Kunena #kprofile-leftcol {
width: 150px !important;
}
/* Kunena Forum - Profile Left Colmn and Avatar Resize to Fit Right Column Fixes */
#Kunena div.kavatar-lg {
height: 150px !important;
width: 150px !important;
}
/* Kunena Forum - Profile Left Colmn and Avatar Resize to Fit Right Column Fixes */
#Kunena img.kavatar {
max-height: 150px !important;
max-width: 150px !important;
}
/* Kunena Forum - "Quick Reply" Form Width Fix */
#Kunena .kreply-form {
width: 400px !important;
}
/* Kunena Forum - "Quick Reply" Form Width Fix */
#Kunena .kreply-form .inputbox {
border-style: solid !important;
border-width: 1px !important;
}
/* Kunena Forum - Profile Text Wrap to Fit Fix */
#Kunena td.kcol-first {
white-space: normal !important;
}
/* Kunena Forum Hiding Buttons */
/* Kunena Forum Hiding Buttons */
/* Kunena Forum Hiding Buttons */
/* Kunena Forum - Hide "New Topic" Button */
#Kunena .newtopic {
display: none !important;
}
/* Kunena Forum - Hide "Delete" AND "Delete Topic" Buttons */
/*
#Kunena .delete {
display: none !important;
}
*/
/* Kunena Forum - Hide "Sticky" Button */
#Kunena .sticky {
display: none !important;
}
/* Kunena Forum - Hide "Lock" Button */
#Kunena .lock {
display: none !important;
}
/* Kunena Forum Hiding Misc Elements */
/* Kunena Forum Hiding Misc Elements */
/* Kunena Forum Hiding Misc Elements */
/* Kunena Forum - Hide Top Breadcrumbs */
#Kunena .kforum-pathway {
display: none !important;
}
/* Kunena Forum - Hide Bottom Breadcrumbs */
#Kunena .kforum-pathway-bottom {
display: none !important;
}
/* Kunena Forum - Hide Drop-down Nav */
#Kunena .klist-bottom {
display: none !important;
}
/* Kunena Forum - Hide "Private Message" Link */
#Kunena .kprofilebox-link {
display: none !important;
}
/* Kunena Forum - Pageination "Page X" Display Fix */
#Kunena .kpagination li {
line-height: 12pt !important;
}
/* Kunena Forum - Hide "Time to create page" Footer */
#Kunena .kfooter {
display: none !important;
}
/* Kunena Forum Misc Fixes */
/* Kunena Forum Misc Fixes */
/* Kunena Forum Misc Fixes */
/* Kunena Forum - WYSIWYG Editor Background */
#Kunena .kpostbuttonset {
background-color: #f2f1ee !important;
}
/* Kunena Forum - Drop-down Background Color Fix */
#Kunena select {
background-color: #ffffff !important;
}
/* Kunena Forum - Search Box Background Color Fix */
#Kunena input {
background-color: #ffffff !important;
}
/* Kunena Forum - Profile "Edit" Button Fix */
#Kunena h2 span.kright {
border-style: solid !important;
border-width: 1px !important;
margin-top: 2px !important;
}
/* Kunena Forum - Profile "Edit", Category Open Button Fixes */
#Kunena .tabs .open {
border-style: solid !important;
border-width: 1px !important;
margin-top: 2px !important;
border-color: #734c00 !important;
}
/* Kunena Forum - Profile "Edit", Category Closed Button Fixes */
#Kunena .tabs .closed {
border-style: solid !important;
border-width: 1px !important;
margin-top: 2px !important;
}
/* Community Builder Misc Fixes */
/* Community Builder Misc Fixes */
/* Community Builder Misc Fixes */
/* Community Builder Bullets in Profile Menu Fix */
.cbpMenu ul, .cbMenu li, .cbSSmenu ul {
background-image: none !important;
}
/* Community Builder Bullets in Profile Menu Fix */
ul.cbpMenu, li.cbMenu, ul.cbSSmenu {
background-image: none !important;
}
/* Community Builder "Online"/"Offline" Status Hard-to-Read Fix */
.cb_online {
background-color:#ffffff !important;
padding: 0px 3px 0px 20px !important;
}
/* Community Builder "Online"/"Offline" Status Hard-to-Read Fix */
.cb_offline {
background-color:#ffffff !important;
padding: 0px 3px 0px 20px !important;
}
.art-blockheader .t, .art-vmenublockheader .t {white-space: nowrap;}
P.S. The site's top menu is a little wonky in Firefox making the site look a little funny in Firefox. I am aware of this and still working on it.