• Resolved Chuckie

    (@ajtruckle)


    I have this code for my forum buttons:

    /* Main buttons */
    #bbp_user_edit_submit,
    #bbp_topic_submit, #bbp_topic_content-tmce,
    #bbp_topic_content-html,
    #bbp_search_submit {
    	text-shadow: none;
    	font-style: normal;
    	background: #d35438 !important;
    	color: #e7d8a3 !important;
      text-align: center;
      border-radius: 4px;
    	-moz-border-radius:4px;
      -webkit-border-radius:4px;
    	border: white 1px solid;
    }
    
    /* Main buttons - hover */
    #bbp_user_edit_submit:hover, #bbp_topic_submit:hover,
    #bbp_topic_content-tmce:hover,
    #bbp_topic_content-html:hover,
    #bbp_search_submit:hover {
    	color: #fff;
      -moz-box-shadow: inset 0 0 20px #000 !important;
      -webkit-box-shadow: inset 0 0 20px #000 !important;
      box-shadow: inset 0 0 20px #000 !important;
    }

    I am trying to include the buttons at the top for Create | Subscribed. I tried bsb-button1 but it wasn’t working.

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

    (@robin-w)

    sorry – beyond free help

    Thread Starter Chuckie

    (@ajtruckle)

    This is the code I needed. I was over complicating it:

    /* Create New Topic / Subscribe buttons */
    .bsp_button1 {
    	background: #d35438 !important;
    	color: #000 !important;
    	 -moz-border-radius:4px !important;
      -webkit-border-radius:4px !important;
      border-radius:4px !important;
    	border: white 1px solid;
    	font-size: 13px !important;
    }
    
    .bsp_button1:hover {
    		color: #fff !important;
      -moz-box-shadow: inset 0 0 20px #000 !important;
      -webkit-box-shadow: inset 0 0 20px #000 !important;
      box-shadow: inset 0 0 20px #000 !important;
    }
Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Styling Create | Subscribe buttons’ is closed to new replies.