@arminunruh Awesome. Now it works :) Thanks for the quick help.
m-czyk
Posts
-
Mobile projects blank page, normal after reload -
Mobile projects blank page, normal after reload@arminunruh thx you :)
The problem is that I don't have it in custom CSS. I have updated all themes and plugins. Even with deactivated custom CSS the error remains. Any idea how I can get this out?
-
Mobile projects blank page, normal after reloadHello everyone,
i have only on mobile devices the problem (iphone Chrome and Safari) that the projects are always displayed as a blank page and after a refresh are displayed normally. On all other main pages this error does not appear. Does anyone have an idea what this could be?
Link:
https://studio-boldig.de/anja-wiese/Beste regards
Marcin -
JS Image-hoverHello,
i would like to use this imagehover (zoom - https://tympanus.net/Tutorials/webgl-mouseover-effects/step3.html) for some pictures. Can anyone help me with this?
This is the github resource: https://github.com/akella/webgl-mouseover-effects
best regards
marcin -
After Update Footer no longer transparent@arminunruh thx armin, i found already the issue :)
great theme! -
After Update Footer no longer transparent@m-czyk Found the issue. Can´t display em. just px
-
After Update Footer no longer transparentunfortunately, it's not working. I think I'll do it for each page separately via body and the id. The main thing is that it works again.
Do you have an idea why the contact form is not displayed correctly anymore?
-
After Update Footer no longer transparentThanks for the quick answer.
Every project has a different background color, so the footer should be transparent, so that the footer becomes brown, as in this example. That's how it was before the update and he didn't make it white. For the projects, the background is also #483523, as in this example. -
After Update Footer no longer transparentHello after the update the background color of the footer was no longer transparent. It is now always white.
When I check it with chrome it says that it is transparent.
Any idea how I can fix this?Example: https://studio-boldig.de/hochsauerland-honig
Custom CSS for Desktop Version:
#footer-region{
background-color: transparent !important;}In addition, the font at the bottom of the contact form is no longer white or is not displayed at all.
Example: https://studio-boldig.de/agentur
Best regards
Marcin -
license key invalid -
license key invalidhello,
i deactivated my license key to activate it on an other website,
but laytheme says that the license has reached maximum allowable domains.please contact me.
best marcin
-
Link to Anchor from another page@mariusjopen thx. i build it with js and now it works.
-
Link to Anchor from another pageNow it works, but after i opened the menu i can not click on any intern link. just the links who goes outside.
-
Link to Anchor from another pageHello, everybody,
I also have the problem that after the latest Laytheme Update an element doesn't work anymore. I have a +-symbol in the upper right corner of the menu (www.studio-boldig.de), where a new menu has opened.
The url was after clicking https://studio-boldig.de#sbmenu or https://xy#sbmenu depending on where you were on the site and everything was fine. But now a "/" is inserted in between the url and it loads an empty page (https://studio-boldig.de/#sbmenu). How do I get rid of the "/" now?
I use this code:
<div>
<a class="button" href="#sbmenu">+</a>
</div>i am happy about any help
best marcin -
Contact Form 7 // acceptance Checkbox not workingor, if you want to make some custom checkboxes:
input[type="checkbox"]{
-webkit-appearance: none !important;
-O-appearance: none !important;
-moz-appearance: none !important;
your custom styles
}input[type="checkbox"]:checked {
-webkit-appearance: none !important;
-O-appearance: none !important;
-moz-appearance: none !important;
your custom styles
} -
Contact Form 7 // acceptance Checkbox not workingHi @andi
i hope you found a solution.I had to deal with it today and it took me a long time to find the mistake.
For the checkboxes to be displayed, you have to insert the following in Custom CSS.PLUGIN Contact Form 7
.wpcf7 input[type="checkbox"]{
-webkit-appearance: checkbox !important;
-O-appearance: checkbox !important;
-moz-appearance: checkbox !important;
}PLUGIN WP Forms
input[type="checkbox"]{
-webkit-appearance: checkbox !important;
-O-appearance: checkbox !important;
-moz-appearance: checkbox !important;
}I hope this help others to use a contact form.
Best Marcin