Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.


    To learn more about how to use our BBCode feature, please click here.

    Thank you, Code Forum.
Untitled.png
It looks like it was hovered or such but it wasn't. Does anyone know the solutions to make it normal? I'm using a Wordpress themes

Site: dirumahin.com
 
I don't see that widget on the homepage of that site, is it on another page? Is the issue that the "Send Email" button is yellow, or that all of the buttons are semi opaque / see-through?
 
The buttons seem to work, the theme just uses a poor color scheme to render the buttons. WooCommerce may have button color settings you can use to change these without CSS, but the code you're looking for will go something like this:

CSS:
.btn-secondary {
    background-color: pink;
    border-color: purple;
}

.btn-secondary-outlined {
    border-color: pink;
    color: purple;
}

For others' reference, the buttons are showing on a single listing page. @RaaselBrig it will definitely help if you post the exact link so we can see the issues without digging through your site.
 
The buttons seem to work, the theme just uses a poor color scheme to render the buttons. WooCommerce may have button color settings you can use to change these without CSS, but the code you're looking for will go something like this:

CSS:
.btn-secondary {
    background-color: pink;
    border-color: purple;
}

.btn-secondary-outlined {
    border-color: pink;
    color: purple;
}

For others' reference, the buttons are showing on a single listing page. @RaaselBrig it will definitely help if you post the exact link so we can see the issues without digging through your site.
Beat me to it! Thanks @Mangini,
 
The buttons seem to work, the theme just uses a poor color scheme to render the buttons. WooCommerce may have button color settings you can use to change these without CSS, but the code you're looking for will go something like this:

CSS:
.btn-secondary {
    background-color: pink;
    border-color: purple;
}

.btn-secondary-outlined {
    border-color: pink;
    color: purple;
}

For others' reference, the buttons are showing on a single listing page. @RaaselBrig it will definitely help if you post the exact link so we can see the issues without digging through your site.
Oh, my bad, i got those kinda color on here


and, here

 
The buttons seem to work, the theme just uses a poor color scheme to render the buttons. WooCommerce may have button color settings you can use to change these without CSS, but the code you're looking for will go something like this:

CSS:
.btn-secondary {
    background-color: pink;
    border-color: purple;
}

.btn-secondary-outlined {
    border-color: pink;
    color: purple;
}

For others' reference, the buttons are showing on a single listing page. @RaaselBrig it will definitely help if you post the exact link so we can see the issues without digging through your site.

Also, here's the css i found

CSS:
/* buttons colors
/* ----------------------------------------------------------- */
.btn-primary,
.fc-button-primary {
  color: #cc9000;
  background-color: #cc9000;
  border-color: #cc9000; }
  .btn-primary:focus, .btn-primary:focus:active,
  .fc-button-primary:focus,
  .fc-button-primary:focus:active {
    color: #cc9000;
    background-color: #cc9000;
    border-color: #cc9000; }
  .btn-primary:hover,
  .fc-button-primary:hover {
    color: #fff;
    background-color: #33beff;
    border-color: #33beff; }
  .btn-primary:active, .btn-primary:not(:disabled):not(:disabled):active,
  .fc-button-primary:active,
  .fc-button-primary:not(:disabled):not(:disabled):active {
    color: #fff;
    background-color: #33beff;
    border-color: #33beff; }

.btn-secondary {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745; }
  .btn-secondary:focus, .btn-secondary:focus:active {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745; }
  .btn-secondary:hover {
    color: #fff;
    background-color: #34ce57;
    border-color: #34ce57; }
  .btn-secondary:active, .btn-secondary:not(:disabled):not(:disabled):active {
    color: #fff;
    background-color: #34ce57;
    border-color: #34ce57; }

.btn-primary-outlined {
  color: #00aeff;
  background-color: transparent;
  border-color: #00aeff; }
  .btn-primary-outlined:focus, .btn-primary-outlined:focus:active {
    color: #00aeff;
    background-color: transparent;
    border-color: #00aeff; }
  .btn-primary-outlined:hover {
    color: #fff;
    background-color: #33beff;
    border-color: #33beff; }
  .btn-primary-outlined:active, .btn-primary-outlined:not(:disabled):not(:disabled):active {
    color: #00aeff;
    background-color: rgba(26, 26, 26, 0);
    border-color: #33beff; }

.btn-secondary-outlined {
  color: #28a745;
  background-color: transparent;
  border-color: #28a745; }
  .btn-secondary-outlined:focus, .btn-secondary-outlined:focus:active {
    color: #28a745;
    background-color: transparent;
    border-color: #28a745; }
  .btn-secondary-outlined:hover {
    color: #fff;
    background-color: #34ce57;
    border-color: #34ce57; }
  .btn-secondary-outlined:active, .btn-secondary-outlined:not(:disabled):not(:disabled):active {
    color: #28a745;
    background-color: rgba(26, 26, 26, 0);
    border-color: #34ce57; }

.btn-call {
  color: #28a745;
  background-color: transparent;
  border-color: #28a745; }
  .btn-call:focus, .btn-call:focus:active {
    color: #28a745;
    background-color: transparent;
    border-color: #28a745; }
  .btn-call:hover {
    color: #28a745;
    background-color: rgba(26, 26, 26, 0);
    border-color: #34ce57; }
  .btn-call:active, .btn-call:not(:disabled):not(:disabled):active {
    color: #28a745;
    background-color: rgba(26, 26, 26, 0);
    border-color: #34ce57; }
 
Back
Top Bottom