- This topic has 3 replies, 2 contibutors, and was last updated 8 years, 9 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Question
Answers
Viewing 4 posts - 1 through 4 (of 4 total)
- The question ‘Custom CSS’ is closed to new replies.
BuddyBoss Home – Web › Support Forums › Themes › Boss. theme › Custom CSS
I have three screenshots with various CSS changes. If you could point me in the right direction it will save a great deal of time. The 1st is the “tan color” in the Forum area. The second is in the “Add New Post” area. Add a border or change the background color it’s difficult to see where to begin writing. The 3rd is in the Profile area. Change the light blue background and text color. Thank You Linda
Hi @lindao, Please add this css code inside your boss theme’s custom css option
.groups div.bbp-template-notice { /*tan color” in the Forum area , replace black with your color*/
background-color: black;
}
#buddypress #message.info p { /*light blue background and text color, apply your color */
background-color: #dbf4f8!important;
color: #4dcadd!important;
}
.sap-editor-wrap .sap-editable-area p,.sap-editor-wrap .sap-editable-title p {
border: 1px solid #ddd !important; /*Add New Post” area*/
padding-left: 10px;
}
Regards
Pallavi,
Thank you! I appreciate your assistance with the custom CSS changes. They worked as expected.
God Bless Linda
Great 🙂