WPHelpout
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Virtue] The shop page is not displaying correctlyHello,
Try adding this to your theme’s Custom CSS:
.woocommerce-page .wrap.contentclass { max-width: 1140px; margin: 0 auto; }
Forum: Themes and Templates
In reply to: [Customizr] Child links can't be clicked on mobile dropdown menuHello,
Try adding this to your theme’s Custom CSS:
@media (max-width: 979px) { .navbar .nav>li>a { display: inline; } .navbar .navbar-inner .nav li { display: inline; }}
Forum: Themes and Templates
In reply to: [Customizr] Lost front-end customizr editor disappearedHello,
The file functions.php is not supposed to be copied to the child theme entirely. Normally only the functions that you edit are supposed to be part of the functions.php file in the child theme and not the entire file.
Forum: Themes and Templates
In reply to: [Chosen] Drop down menu not working on iphoneHello,
Send us a link to your site?
Does that issue happen on the demo of the theme? Send us a link and share a screenshot.
Forum: Themes and Templates
In reply to: Home Page is not displayed correctlyHello,
It would be hard to say without a closer look.
The only other suggestion I have is to ask your hosting provider to restore your site, they should have a backup of the site from a previous date where everything was working.
Forum: Themes and Templates
In reply to: Home Page is not displayed correctlyHello,
Have you tried deactivating all of your plugins and testing again?
You may try to enable the WP Debug mode to see if there are any errors.
It is possible that your theme is very old and using some deprecated methods that are no longer compatible with WordPress 4.4
Forum: Themes and Templates
In reply to: [Flat] Make the main nav background square smaller?Hello,
Post a link to your site, we can take a look. ??
Forum: Themes and Templates
In reply to: PSD Login formHello,
That would require some rather extensive coding if you are not familiar with transforming PSD files to code.
I would recommend using a plugin such as Contact Form 7 to create your form. There are several YouTube tutorials on that plugin on how to work with it.
Then, once you have created your form with that plugin you will need Custom CSS styling. You can ask a professional service to style the form for you or you can come here on the forums and ask your questions about styling the form once the form is online. ??
Happy new year !:)
Forum: Themes and Templates
In reply to: [Rookie] add shadow to websiteHello,
In your theme’s Custom CSS area you can try adding this:
.site-header { margin-bottom: 0px; -webkit-box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.75); -moz-box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.75); box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.75); }
You can adjust the shadow by generating the code from this side: https://www.cssmatic.com/box-shadow
Forum: Themes and Templates
In reply to: Can't see where to remove a theme logoHello,
If your theme has a Custom CSS area, add this bit of code to it:
.nav-logo-wrap { display: none; }
Let us know if that helps. ??
Forum: Themes and Templates
In reply to: HTML to WordPress – Twenty Sixteen ThemeHello,
Send us a link to what you have done so far. We can take a look. ??
Forum: Themes and Templates
In reply to: Header(logo and menu) reappear on scroll and hoverHello,
We have replied to you in this forum topic:
https://www.ads-software.com/support/topic/make-logomenu-reappear-on-scroll-up-and-hover?replies=1Forum: Themes and Templates
In reply to: [Twenty Fourteen] Removing Left SidebarThank you for sharing your idea. ??
Forum: Themes and Templates
In reply to: Theme Development – Navigation MenuHello,
Send us a link to your site, we can take a look.
Forum: Themes and Templates
In reply to: [Edin] Make logo/menu reappear on scroll up and hoverHello,
You could try this, inside of your theme’s Custom CSS add this:
@media screen and (min-width: 1100px) { #masthead { position: fixed; top: 0; z-index: 9; width: 100%; } #content { padding-top: 180px; }}
Or if your theme has no Custom CSS area add it to your style.css file at the bottom of it.