• Resolved lisawang123

    (@lisawang123)


    Hi, is there a way to insert HTML code to the text? I am trying to make the text linkable, but when I link the text, the text got underlined. Is there a way to remove the underline?

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Imtiaz Rayhan

    (@imtiazrayhan)

    Hi @lisawang123,

    Right now, we don’t have option to add HTML code directly.

    But your issue can be solved using custom CSS.

    Go to Appearance > Customize > Additional CSS and add the following CSS code there and publish the changes.

    .wptb-cell .wptb-ph-element a {
        text-decoration: none;
    }

    Let me know if you need further assistance.

    Regards.

    Thread Starter lisawang123

    (@lisawang123)

    Thanks! that was helpful. The links also turn to pink with the safari browser. How can I change the color to black?

    https://caravanwellness.com/testtest/

    .wptb-cell .wptb-ph-element a {
    text-decoration: none;
    color:#000000;
    }

    The code I use doesn’t seem to work

    Plugin Author Imtiaz Rayhan

    (@imtiazrayhan)

    Use !important with the color value.

    Like this

    .wptb-cell .wptb-ph-element a {
        text-decoration: none;
        color: #000000 !important;
    }

    Hope this helps.

    Regards.

    Thread Starter lisawang123

    (@lisawang123)

    Thanks!!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘add HTML code to the table’ is closed to new replies.