yogeshyadav20
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Headings disappearing on mobile screenAdd this CSS in your CSS
@media(max-width:525px){
.title-heading-center.fusion-responsive-typography-calculated {
display: block;
}
}Thanks
Forum: Fixing WordPress
In reply to: Import Errorthank @threadi for your advice
Forum: Fixing WordPress
In reply to: header mobile menu help@rshay could you share your site URL here, so we can check
Forum: Fixing WordPress
In reply to: Headings disappearing on mobile screenadd this CSS
.title-heading-center.fusion-responsive-typography-calculated { display: block; }
Forum: Fixing WordPress
In reply to: hamburger popup menuhello @njpada
add this
.primary-navigation-open .has-logo.has-title-and-tagline .primary-navigation>.primary-menu-container { transform: translateY(0) translateX(100%); }
in the place of
.primary-navigation-open .has-logo.has-title-and-tagline .primary-navigation>.primary-menu-container { transform: translateX(0) translateY(0); }
Forum: Fixing WordPress
In reply to: Full singel post2nd way
echo both content and expect in separate div and call post id in each div, hide add content div except what you want to show
Forum: Fixing WordPress
In reply to: Full singel postYes, you can do something like this
<?php $loop = new WP_Query(array ('post_type' => 'carousel', 'orderby' => 'post_id', 'order' => 'ASC')); ?> <?php while( $loop->have_posts() ): $loop->the_post(); $current_id = get_the_ID(); ?> <div class="bbbb"> <div class="aaaa"> <h3><?php the_title(); ?></h3> <?php if($current_id == 12){ the_content(); }else{ the_excerpt(); } ?> </div> </div> <?php endwhile; wp_reset_query();?> </div>
Forum: Fixing WordPress
In reply to: Search only shows 404 pageHi there,
In your search form you need the action attribute of the form element to be set to the home URL. Something similar to this:
<form role="search" method="get" class="search-form" action="<?php echo home_url( '/' ); ?>">
You could also look at the code reference for get_search_form().
Forum: Fixing WordPress
In reply to: Having issues with my navigation bar on mobileokay, just paste this code in your footer or inside your script
jQuery(document).ready(function() { jQuery('#bootstrapicons-css').attr('href', function(i, s) { return s.replace("https://secureservercdn.net/198.71.190.156/ygm.ab7.myftpupload.com/wp-content/themes/themeassets/vendor/bootstrap-icons/bootstrap-icons.css?ver=1&time=1651378952", "https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"); }); });
Forum: Fixing WordPress
In reply to: Having issues with my navigation bar on mobileyes
Forum: Fixing WordPress
In reply to: Having issues with my navigation bar on mobileyou have to add this code in your style.css, alternately you can use its CDN in your header inside the head tag
Forum: Fixing WordPress
In reply to: Image Galleries not showingHi there,
Uncaught ReferenceError: jQuery is not defined at foogallery.js?ver=2.2.7:1716:2
this is the reason, why it’s not working fix this issue
Forum: Fixing WordPress
In reply to: Having issues with my navigation bar on mobileafter adding this it looks like this
https://www.awesomescreenshot.com/image/26536755?key=d347366455f63d1d828797495f407332
Forum: Fixing WordPress
In reply to: Having issues with my navigation bar on mobileYou can import this like this-:
@import url("https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css");
let me know if anything else I can help for you
thanks
Forum: Fixing WordPress
In reply to: Having issues with my navigation bar on mobileyes, fix above issue this will fix your mobile menu issue