WPIntell

Source evidence

Change button position

Floating Contact Button · support · 2020-10-23T08:46:00+00:00

mixedsentiment
highseverity
0.95relevance
5replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

3 / 28 rows with source links

10.7% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

25 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
ollieuk resolved
I am currently using FCB together with Google Recaptcha. The recaptcha badge and the FCB are now rendering on top of each other. There is the ability to add CSS to grecaptcha to change the position, but there are challenges in this and it ends up with the grecaptcha bag being displayed higher up the page than FCB although it is less important (to the user). Is there the ability to control the position of FCB directly or via CSS? Something like /* move FCB to 120px above bottom of page /* .grecaptcha-badge { bottom: 120px !important; } would be really helpful. This topic was modified 5 years, 7 months ago by ollieuk . Hi @ollieuk , in the plugin settings such a function is not yet implemented, but it might be for future versions. But with CSS you can change the position without any problems: i.fcb-icons { bottom: 87px !important; } This adjustment can best be made in the theme style.css, so that this will not be overwritten by future plugin updates. Best regards, Chris Hi @cmsgeek , Thanks. That was exactly what I was looking for. Cheers, Oliver And how, i could move this button from right to left only? +) Hi @mauri01 , with the following adjustment in the CSS file you can change the position. The 20 pixel distance from left can of course be changed arbitrarily. i.fcb-icons { left: 20px; } Best regards, Chris This worked perfectly! Thank YOU!

Comments

5 shown
Christoph Nagel 2020-10-25T13:23:00+00:00

Hi @ollieuk , in the plugin settings such a function is not yet implemented, but it might be for future versions. But with CSS you can change the position without any problems: i.fcb-icons { bottom: 87px !important; } This adjustment can best be made in the theme style.css, so that this will not be overwritten by future plugin updates. Best regards, Chris

ollieuk 2020-10-25T13:25:00+00:00

Hi @cmsgeek , Thanks. That was exactly what I was looking for. Cheers, Oliver

mauri01 2021-03-22T12:59:00+00:00

And how, i could move this button from right to left only? +)

Christoph Nagel 2021-04-01T17:51:00+00:00

Hi @mauri01 , with the following adjustment in the CSS file you can change the position. The 20 pixel distance from left can of course be changed arbitrarily. i.fcb-icons { left: 20px; } Best regards, Chris

mauri01 2021-04-02T15:02:00+00:00

This worked perfectly! Thank YOU!