• Resolved fewfewfew

    (@fewfewfew)


    Sorry for yet another request. I have tried searching threw the code and finding the correct css to adjust In my child theme section but unable to find the code.

    This picture > https://i57.tinypic.com/16kb0ic.png

    As you can see Inside the red marking on that picture, you can see a random color under the border around the button. How can I change this bottom border color to look like this.

    https://i62.tinypic.com/25k1vzn.png

    The color code is: #041620

    Hope you can help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author acosmin

    (@acosmin)

    Open style.css and find:

    .post-template-1 .details .post-small-button {
      width: 48px;
      text-align: center;
      border-width: 1px;
      border-style: solid;
      font-size: 11px;
      -webkit-box-shadow: 0 2px 0 rgba(225,225,225,0.5);
      -moz-box-shadow: 0 2px 0 rgba(225,225,225,0.5);
      box-shadow: 0 2px 0 rgba(225,225,225,0.5);

    change with:

    .post-template-1 .details .post-small-button {
      width: 48px;
      text-align: center;
      border-width: 1px;
      border-style: solid;
      font-size: 11px;
      -webkit-box-shadow: none !important;
      -moz-box-shadow: none !important;
      box-shadow: none !important;
    Thread Starter fewfewfew

    (@fewfewfew)

    Thanks this worked! ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Help changing css color’ is closed to new replies.