Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2342777
Text box
Closed

Comments

  • m28006 started the conversation

    How can I make a framed text box with a separate background colour? I.e. a factbox standing out from the rest of the post. Thanks in advance!

  •  2,699
    PenciDesign replied

    Hi,

    You can use a custom HTML like this to do that:

    <div style="padding: 20px; background: #28822c;"><p style="color: #ffffff;">YOUR TEXT PUT HERE</p></div>

    Best Regards,

    PenciDesign

  • m28006 replied

    Thanks, that worked. How about making the top of the box in a different colour?

  •  2,699
    PenciDesign replied

    Hi,

    You can try with this custom HTML:

    <div>
    <div style="padding: 15px; background: #4085CB;">
    <h3 style="font-size:18px; color: #fff; margin: 0; padding: 0;">YOUR TITLE PUT HERE</h3>
    </div>
    <div style="padding: 15px; background: #D9E7F5;">
    <p style="color: #111111; margin: 0;">YOUR TEXT PUT HERE</p>
    </div>
    </div>
    

    Best Regards,

    PenciDesign

  • m28006 replied

    Thank you, that looks nice!