oweskeez
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Total] Slider Height Too TallOk, simpler than I thought. Just add the max-height property to .bx-viewport and .ht-slide in child theme stylesheet!
Hello,
Anyone know if this can be done on a local web server? I changed /localhost to /mywebsite.org to allow for subdomains, but I’m not sure how I would configure DNS to point to my IP.
I will probably just end up renewing my hosting subscription, but I wanted to try locally first.
Thanks!
Forum: Fixing WordPress
In reply to: PHP script not executing after form submit@esmi thank you so much! I wrote my own plugin and the form and script work perfectly!
Forum: Fixing WordPress
In reply to: PHP script not executing after form submitEsmi,
Thanks for the response. I am using a template file as I only want this feature on certain pages. Can I accomplish this with a plugin? Why does wordpress require a plugin to execute php code after a form is submitted? Seems to complicate a rather simple process.
Forum: Themes and Templates
In reply to: [Responsive] Child theme: custom template files break stylingHey Michael,
Thanks for your response. The header/footer have no
<head>
section because I am calling them as PHP includes on each page of my site.The best method I read to get the stylesheets to call is using
wp_enqueue_scripts
but that did not seem to work.Would you suggest I add a head section to header/footer and call my stylesheet there, or use the above enqueue method.
I am still confused on why the rest of the styling for the site broke, I did not do anything to the body section and yet its styling broke.
Thanks again.
Forum: Themes and Templates
In reply to: [Responsive] Child theme: custom template files break stylingHey Michael,
Here is my header:
<nav> <img id="nav-logo" src="../images/logo.png" alt=""/> <ul id="nav-links"> <li><a href="../index.php">Home</a></li> <!--services-dropdown--> <li> <a href="../services/services.php">Services<i class="fa fa-caret-down" aria-hidden="true" style="padding-left: 5px;"></i></a> <ul class="services-dropdown"> <li><a href="../services/services.php?0" id="show-design">Design</a></li> <li><a href="../services/services.php?1">Drawing</a></li> <li><a href="../services/services.php?2">Prototyping</a></li> </ul> </li> <!--services-dropdown--> <li><a href="../pricing/pricing.php">Pricing</a></li> <li><a href="../shop">Shop</a></li> <li><a href="../team/team.php">Team</a></li> <li><a href="../gallery/gallery.php">Gallery</a></li> <li><a href="../contact/contact.php" id="contact-link">Contact</a></li> </ul> </nav> <!--mobile-nav--> <button class="hamburger">☰</button> <button class="cross">˟</button> <div class="menu"> <ul> <li><a href="../team/team.php">Team</a></li> <li><a href="../pricing/pricing.php">Pricing</a></li> <li><a href="../gallery/gallery.php">Gallery</a></li> <li><a href="../shop">Shop</a></li> </ul> </div> <!--mobile-nav-->
Here is my footer:
<footer> <div class="footer-cta"> <p> Have any questions or looking for asisstance? </p> <a href="../internals/contact.php">Contact Us</a> </div> <div class="footer-left"> <p class="footer-links"> <img class="footer-logo" src="../images/logo.png" alt=""/> <a href="../index.php">Home |</a> <a href="../services/services.php">Services |</a> <a href="../team/team.php">Team |</a> <a href="../pricing/pricing.php">Pricing |</a> <a href="../shop/shop.php">Shop |</a> <a href="../gallery/gallery.php">Gallery |</a> <a href="../contact/contact.php">Contact |</a> </p> </div> <div class="footer-right"> <a href="#"><i class="fa fa-facebook-square fa-2x" aria-hidden="true"></i></a> <a href="#"><i class="fa fa-twitter-square fa-2x" aria-hidden="true"></i></a> <a href="#"><i class="fa fa-linkedin-square fa-2x" aria-hidden="true"></i></a> </div> </footer>
Thanks for your help!
Forum: Themes and Templates
In reply to: Child theme: custom template files break stylingHey sorry for posting in the wrong spot, I moved this thread to the correct forums here:
Forum: Themes and Templates
In reply to: Child theme: custom template files break stylingHey esmi,
I actually already tried to post on their forums, but it seems their forums is broken for new users. I made an account, but when I log in and try to post it says “must log in” and goes in an infinite loop.
Forgive my noobishness.