Make Text into a Button

Hey There!

I’m using the AMAZING Wordpress plugin from Yabdab for a blog.

In the options, there are several titles and labels (i.e. “Read More”… and “Next Page”) that I’d like to look more like buttons with a solid color background.

Sadly, I don’t know how to make that happen. Can anyone help me out?

May be able to do it with some CSS can you give a URL ?

2 Likes

That could work.

Don’t have my project up yet. This should do: http://yabdab.com/demo/wordpress/

.wp-btn {
  font: bold 11px Arial;
  text-decoration: none;
  background-color: #EEEEEE;
  color: #333333;
  padding: 2px 6px 2px 6px;
  border-top: 1px solid #CCCCCC;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  border-left: 1px solid #CCCCCC;
}

Still you have to style the button accordingly…

3 Likes