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?
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
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.
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 */