• Resolved rosetapaas

    (@rosetapaas)


    The + and – signs are not aligned with the question. They seem to be on the upper line

    +
    Question

    instead of

    + Question

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

    (@jaysupport)

    Hi Roseta,

    That sounds like a small CSS conflict that could easily be corrected with some custom CSS. Could you provide the URL to your FAQ page, so we can take a look and see what Custom CSS you might be able to use to solve this issue?

    Thread Starter rosetapaas

    (@rosetapaas)

    hello Jay,
    Thank you for replying. This is the URL , not sure if you can do anything with it, as it is not a public page.

    https://help.tapaas.com/knowledge-base/faqs/

    Thanks
    Rose

    Plugin Support jaysupport

    (@jaysupport)

    Hi Rose,

    No, we don’t see anything there, just: “please login to access this content.”

    I can tell you that the CSS selector for the icons is:

    .ewd-ufaq-post-margin-symbol
    

    So you could try something like:

    .ewd-ufaq-post-margin-symbol {
        margin-top: 5px;
    }
    

    You might need to mess around with the value and maybe use !important, depending on what other CSS you have that is affecting it.

    Thread Starter rosetapaas

    (@rosetapaas)

    perfect , this did the trick ..25px though .. thanks

    I posted this on another thread but it might be useful here too, later.

    Many users seem to want to change the
    .size
    .color
    .alignment
    of the + – symbols next to the FAQ.

    In the Admin section (I`m using the free version) go to
    Basic -> General and in the Custom CSS box add the below CSS as it is. Please note /* ….. */ are comments added to note what the CSS does.

    Hope it helps.

    /* START EDIT MARGIN SYMBOL */
    .ewd-ufaq-post-margin-symbol span {
    font-size:15px!important;
    }
    .ewd-ufaq-post-margin-symbol :hover {
    color:#D72929;
    }
    .ewd-ufaq-post-margin-symbol {
    margin-top:9px;
    }
    /* END EDIT MARGIN SYMBOL */

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Alignment issue’ is closed to new replies.