• Resolved saveatrain

    (@saveatrain)


    as you can see the picture of link to FAQ is over the word permanent link
    how do i make this not happen please?

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

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Support jaysupport

    (@jaysupport)

    Hi train,

    You can solve this issue by using the following Custom CSS. You can paste Custom CSS in Options > Basic > Custom CSS box.

    .ufaq-permalink-image {
        margin-top: -45px;
    }
    Thread Starter saveatrain

    (@saveatrain)

    Plugin Support jaysupport

    (@jaysupport)

    You’re going to need do a little bit of trial and error to get it exactly as you want.

    Additionally, all you said was you didn’t want it to overlap, which the CSS I suggested fixed. You didn’t mention any other specifics about how you wanted it to look.

    Also, when I provide some custom CSS, it’s to show you how you can use it to modify the styling, and to hopefully act as a guide so you can make the necessary refinements to get it to the perfect you require.

    With that in mind, since, you have two different pages with opposite RTL text values, you’re likely going to need to use separate CSS for each.

    Having said that, I’m not sure what it is you want to adjust about the current way it looks. You want them side by side? An example of how you might do that would be:

    .ufaq-permalink-image{
        margin-top: -26px;
        margin-left: 90px;
    }
    .rtl .ufaq-permalink-image {
        margin-top: -26px;
        margin-right: 90px;
    }
    Thread Starter saveatrain

    (@saveatrain)

    THIS IS PERFECT
    THANK YOU SO MUCH

    Thread Starter saveatrain

    (@saveatrain)

    After i updated your latest version the CSS stoped working and again the image is above the link
    https://www.kideno.com/he/%d7%a9%d7%90%d7%9c%d7%95%d7%aa-%d7%95%d7%aa%d7%a9%d7%95%d7%91%d7%95%d7%aa/

    Plugin Support jaysupport

    (@jaysupport)

    Some of the class names were modified to standardize the code across the whole plugin. For this, you can use the following instead:

    .ewd-ufaq-permalink-image{
        margin-top: -26px;
        margin-left: 90px;
    }
    .rtl .ewd-ufaq-permalink-image {
        margin-top: -26px;
        margin-right: 90px;
    }
    • This reply was modified 3 years, 10 months ago by jaysupport.
    Thread Starter saveatrain

    (@saveatrain)

    works, thanks

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Picture over the link’ is closed to new replies.