-
Author
-
June 20, 2014 at 09:52 #20351rudik2Participant
Hi,
it is possible to hide register form in pc, but display in mobile?
Please help.June 27, 2014 at 01:27 #21057AbeKeymasterHi, All this kind of things can be done using css and you need CSS knowledge. Follow my example here that hides the menu for mobile:
https://archived.seventhqueen.com/forums/topic/how-to-hide-menu-in-mobile-for-not-logged-in#post-21056Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.July 11, 2014 at 12:47 #22371rudik2ParticipantCOPY CODE@deskop only screen and (min-width: 480px) { .register_form_front { display: none; } }
will be ok? Please help
July 11, 2014 at 12:48 #22372rudik2Participant@deskop only screen and (min-width: 480px) {
.register_form_front {
display: none;
}
}July 11, 2014 at 13:08 #22374rudik2ParticipantWhats is name to register form in code? .kleo_register_form , .register_form? hmm??
July 14, 2014 at 14:31 #22516AbeKeymaster@rudik2 you need basic CSS/HTML development knowledge to make structure changes and other custom changes. please hire a programmer for that since we can’t provide this kind of service as much as we wanted.
you added @desktop only so that won’t ever apply for mobile. it should be something like
@media screen and (max-width: 480px) {
}Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.July 14, 2014 at 14:36 #22517AbeKeymasterI see you need it for desktop to hide so your media query should be good but the css selector should be #register_form_front
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.July 14, 2014 at 14:54 #22523rudik2ParticipantFor test that #register_form_front selector is tru i pasted this code:
COPY CODE@media screen and (min-width: 480px) { #register_form_front { display: none; } }
I see register form still in mobile, why?
July 14, 2014 at 18:28 #22569AbeKeymasterUse it in your initial code since first I thought you want to hide it for mobile
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer. -
AuthorPosts
The forum ‘Sweetdate – WordPress’ is closed to new topics and replies.