-
Author
-
December 28, 2015 at 11:48 #95401istophepcParticipant
I’d like to change the button color and button title created in VC masonry post grid api. I tried:
.vc_btn3-container vc_btn3-left,
.vc_btn3-container {
display: none;
}
.vc_gitem-zone vc_gitem-zone-a vc_gitem-is-link,
.vc_gitem-is-link {
display: none !important;
}.vc_btn3.vc_btn3-color-juicy-pink, .vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat {
color: #00ccff;
background-color: #00ccff;
}and fooling around with php and js files.
Nothing.
Thanks
December 29, 2015 at 17:08 #95583RaduModeratorHi,
Add this css to wp-admin -> theme options -> general settings -> quick css
COPY CODEbutton.vc_btn3 { background-color: red !important; color:#fff !important; } .wpb_wrapper .btn { background-color: red !important; color: #FFF !important; }
REplace colors with yours.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionDecember 29, 2015 at 20:14 #95627istophepcParticipantRadu,
button.vc_btn3 {
background-color: #00cccc !important;
color:#fff !important;
}.wpb_wrapper .btn {
background-color: #00cccc !important;
color: #FFF !important;
}
pasted into “quick css”, and/or the child and parent css, does not work. Neither do other overide css snippets I’ve pasted into KLEO’s css fixes. WHY won’t css entered into the quick css or elsewhere overide? firebug shows the btn style as originating in js_composer.min. I can change the color in the firebug console only. And no, pasting into js_composer.min.css doesn’t work either. What am I missing here? ThanksDecember 30, 2015 at 17:07 #95709RaduModeratorHi,
On my side these works,
Please provide me a screenshot with that button that you want to change bg color.
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionDecember 31, 2015 at 11:19 #95827istophepcParticipantRed buttons. As stated, I change the css as instructed, where instructed, also added to parent and child themes css and nothing…
see attached
Attachments:
You must be logged in to view attached files.January 4, 2016 at 17:29 #96174RaduModeratorHi,
Please add this css
COPY CODE.vc_btn3.vc_btn3-color-juicy-pink, .vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat { background-color: green; }
Replace green with your desired color
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
The forum ‘Plugins questions’ is closed to new topics and replies.