Social Style

.social-box { display: block; margin-bottom: 30px; font-weight: bolder; } .social-box:last-of-type { margin: 0 0 40px; } .social-btn { display: block; width: 100%; } a.col-2.sbtn span { display: none; } a.col-2.sbtn { width: 6%; display: inline-block; text-align: center; border-radius: 50px; padding:…Continue reading

ChatBot CSS

#mwai-chat-id { –mwai-spacing: 15px; –mwai-fontSize: 15px; –mwai-borderRadius: 10px; –mwai-fontColor: #FFFFFF; –mwai-backgroundPrimaryColor: #454654; –mwai-backgroundSecondaryColor: #343541; –mwai-aiAvatarBackgroundColor: #10a37f; –mwai-userAvatarBackgroundColor: #135ea4; –mwai-headerButtonsColor: #FFFFFF; –mwai-width: 100%; –mwai-height: 100%; –mwai-maxHeight: 100%; –mwai-headerHeight: 50px; –mwai-borderWidth: 2px; } #mwai-chat-id .mwai-open-button { position: fixed; right: 0; bottom: 0;…Continue reading

CSS Formatting

add_action( ‘wp_head’, function () { ?> /* GLOBAL START*/ /* Change Star Icon Color for JetReviews Plugin */ .jet-reviews-stars-field .jet-reviews-stars–filled i { color: #00CE7C !important; } /* Fix Double Search bar and x */ input[type=”search”]::-webkit-search-decoration, input[type=”search”]::-webkit-search-cancel-button, input[type=”search”]::-webkit-search-results-button, input[type=”search”]::-webkit-search-results-decoration { -webkit-appearance:none;…Continue reading

Global css

CSS.root /* Link */ #activity-stream .activity-header a{ font-size:14px !important; font-weight:900 !important; } /* Division */ #bp-nouveau-activity-form form > div:nth-child(5){ display:none; } /* Nouveau activity form */ #bp-nouveau-activity-form{ padding-left:5px; padding-right:5px; margin-left:1px; margin-right:3px; padding-bottom:23px; margin-bottom:-7px; } /* Stories user stories */ #buddypress…Continue reading

Change Star color of JetReviews plugin

/* Change Star Icon Color for JetReviews Plugin */ .jet-reviews-stars-field .jet-reviews-stars–filled i { color: #00CE7C !important; } /* Fix Double Search bar and x */ input[type=”search”]::-webkit-search-decoration, input[type=”search”]::-webkit-search-cancel-button, input[type=”search”]::-webkit-search-results-button, input[type=”search”]::-webkit-search-results-decoration { -webkit-appearance:none; }Continue reading

SBI – Make images B/W

.sbi_photo_wrap { -webkit-filter: grayscale(100%); /* Safari 6.0 – 9.0 */ filter: grayscale(100%); } .sbi_photo_wrap:hover { -webkit-filter: none; /* Safari 6.0 – 9.0 */ filter: none; }Continue reading