[Resolved] Using drop caps and attribute in the same wordpress block

Home Forums Support [Resolved] Using drop caps and attribute in the same wordpress block

Home Forums Support Using drop caps and attribute in the same wordpress block

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1616979
    Simon

    Hi,
    I’m a html and css newb and trying to get drop caps and the <mark> attribute working inside the same wordpress block.
    I am trying to get “Here’s what you will get from Simon Portillo Electrician Services:” inside a <mark> attribute.

    Here is the page it’s on:

    simonportillo.co.uk

    Thanks for reading!

    #1617198
    David
    Staff
    Customer Support

    Hi there,

    try this for your CSS:

    P.drop-cap::first-letter {
        font-size: 4.5em;
        line-height: 1;
        float: left;
        padding-right: 0.125em;
    }

    The important part is the line-height property.

    For the <mark> you would need to switch the editor to code view, and the HTML for that text block would be something like this:

    <p class="drop-cap">Beginning of paragraph with the drop cap, followed by the <mark>text within the mark element</mark></p>

    #1617230
    Simon

    Hi David,
    Thank you so much !!! That is working exactly as intended!
    Best wishes
    Simon

    #1617242
    David
    Staff
    Customer Support

    Glad to hear that!

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.