Reply To: Want Read More button in Home boxes

Homepage Community Forums Legacy Theme Support Want Read More button in Home boxes Reply To: Want Read More button in Home boxes

#3042
Wes
Moderator

    Assuming you’re using the Genesis Featured Page widget (like the demo) then you should be able to add “Learn More” in the “More Text” box of the widget. This will add the “.more-link” class so you can style it in your css. The portfolio is setup this way, and you could start out by copying the “more-link” code for the portfolio like this –

    .more-link {
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    background: url(images/button.png) repeat-x;
    border: 1px solid #000;
    color: #fff;
    display: block;
    font-family: 'Oswald', arial, serif;
    font-size: 14px;
    padding: 2px 0 3px;
    margin-top: 15px;
    text-align: center;
    text-decoration: none;
    text-shadow: 1px 1px #555;
    width: 100px;
    }

    …then adjust as needed