Hi,
Can you share the url of the website and page?
I suppose it is just a CSS issue, where the button has a white color on a white background. Some custom CSS would solve it.
Hi Marcel,
hier ist der Link zum Gästebuch:
https://dienstleistungen-stolowski.de/feedback
Ich habe man mit Strg + a alles markiert. Jedoch wird dort kein Button sichtbar.
Aber ich habe mal die Webseite via Firefox untersucht und dann im Code den Button entdeckt. Er ist tatsächlcih komplett weiß wie der Bereich der Webseite.
Try this CSS. You can add it in Appearance > Customizer > Custom CSS.
#gwolle_gb_write_button .mdc-text-field__input,
#gwolle_gb_write_button input:not([type="submit"]):not([type="checkbox"]) {
background-color: #228ae6;
}
-
This reply was modified 5 years, 5 months ago by
Marcel Pol.
I have used this Code in the css file from the plugin
XXXX\wp-content\plugins\gwolle-gb\frontend\css
and its works fine. But so I have now a big field in this color.
How can I change only the text color because when I add color: and grey or a colorcode the changes not accepted.
#gwolle_gb_write_button,
#gwolle-gb-write-button {
margin: 20px 0 10px;
background-color: grey;
Hmm, please do not change the files in the plugin. They will be overwritten on the next upgrade.
It is better to place custom CSS in:
Appearance > Customizer > Custom CSS.
The ID that you are targeting is for the div around the button. You can better target the button directly:
#gwolle_gb_write_button,
#gwolle-gb-write-button {
color: transparent;
background-color: transparent;
}
#gwolle_gb_write_button input.button,
#gwolle-gb-write-button input.button {
color: blue;
background-color: grey;
}
-
This reply was modified 5 years, 5 months ago by
Marcel Pol.
I have change the code in the custom css yesterday and undo the changes in the css file from the plugin.
Now I have used your new code from today and its work fine. Thanks for that.
Another Question:
my Guestbook labels are in german. How can I edit the names of the labels ?
Because the free text label is named “Gästebuch” an I will change it to another.
In the language files (XXX\dienstleistungen-stolowski.de\httpdocs\wp-content\plugins\gwolle-gb\lang) is no german file. Where can I changhe the Labels ?
And Second Question: Which file must be edit to add some empty lines because the distance between some lines are to close.
Ok.I have found The Language file in the main language folder from wordpress, but there are not the labels and placeholder from the guestbook what the guest are seen.
-
This reply was modified 5 years, 5 months ago by
dererkster.
This CSS could help. By default it is 10px, it can be set higher.
body #gwolle_gb .gb-entry {
padding: 13px 0;
}
About the language files, those will be overwritten on an update. It is much better to add them to the language files that get updated through the dashboard. Shall I request that you become translator for the German strings? It can take a bit of time to have them updated, but they won’t be overwritten on update anymore.
Hi,
the Problem is that I will only change the Label and placeholder of the guestbook.
So I will do a daily backupso when the plugin get an update so i can change the labels/ placeholders manually if the filecontant have an other content than before the update. when not i overrife the file with the backup.