• Resolved titis14

    (@titis14)


    Hi Robin I wanted to customize the button to create a new topic, but when I put my code in the custom css of my theme it does not take into account the changes the class “bsp-new-topic” and you force it to be a priority?

    bsp-new-topic {
    text-align: center;
    border: 1px solid #ED6136;
    width: 150px;
    margin-left: auto;
    margin-right: auto;
    background-color: #ed6136;
    }

    Thank you

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Robin W

    (@robin-w)

    My css loads after the theme and bbpress to ensure that it is this code that executes.

    You would need to do one of two things

    1. put the code in the custom css tab of my plugin
    2. make the lines of your code in your theme’s css !important

    eg

    bsp-new-topic {
     text-align: center !important;
     border: 1px solid #ED6136 !important ;
     width: 150px !important;
     margin-left: auto !important;
     margin-right: auto !important;
     background-color: #ed6136 !important;
     }
    • This reply was modified 8 years, 5 months ago by Robin W.
    Thread Starter titis14

    (@titis14)

    It’s OK I had not put the point to the name of the class .bsp-new-topic.
    Sorry for inconvenience.

    Thread Starter titis14

    (@titis14)

    ??


Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Customize button to create topic’ is closed to new replies.