lenna2090
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress footer widget displaying in the same column@jnashhawkins Thanks you for reaching me out. What I did was I removed the code of bootstrap from functions.php from the parent theme and the added cdn in the child theme because I thought two bootstrap.min.css will create a problem like .js file do when they have a duplicate load.
I went back kept the code of bootstrap.min.css in the parent theme and it worked!
Thanks again.
- This reply was modified 5 years, 8 months ago by lenna2090.
Forum: Fixing WordPress
In reply to: WordPress menu not showing.The menu shows up in the mobile view but does not show up on the website. I have checked that with other themes but my menu is visible on the other theme.
Forum: Fixing WordPress
In reply to: Create a good looking side bar with thumbnailsNo! I was asking is there any keyword to assign in the functions.php so that I can write my html code inside that.
Forum: Fixing WordPress
In reply to: Create a good looking side bar with thumbnailsIf you don’t mind please have a look here: [ redundant link removed ]
This is what I want to create. But in the functions.php I see before title and after title keywords. I have already gone through the page you have shared.Forum: Fixing WordPress
In reply to: Create a good looking side bar with thumbnailsThank you, but as I am writing code I don’t want to use a plugin for this. Is there any way out?
Forum: Fixing WordPress
In reply to: WordPress menu not showing.I have also noticed the flash of menus, but when you click the hamburger it overtakes that. Also, the menus displayed in the hamburger is also not working. If I call primary menus in the hamburger gives the list of menus but takes other features like search and others.
Forum: Fixing WordPress
In reply to: WordPress menu not showing.Following is my code in header.php
<!DOCTYPE html>
<html lang=”en”>
<head>
<title>TRAINER JAMES INSTITUTE</title>
<meta charset=”utf-8″>
<meta http-equiv=”X-UA-Compatible” content=”IE=edge”>
<meta name=”description” content=”Elearn project”>
<meta name=”viewport” content=”width=device-width, initial-scale=1″>
<?php wp_head() ?>
</head>
<body><div class=”super_container”>
<!– Header –>
<header class=”header”>
<!– Top Bar –>
<div class=”top_bar”>
<div class=”top_bar_container”>
<div class=”container”>
<div class=”row”>
<div class=”col”>
<div class=”top_bar_content d-flex flex-row align-items-center justify-content-start”>
<ul class=”top_bar_contact_list”>- <div>+977-980-4909089</div>
- <div>+977-986-2373894</div>
- <div>[email protected]</div>
<div class=”top_bar_login ml-auto”>
- <i class=”fa fa-google-plus” aria-hidden=”true”></i>
- <i class=”fa fa-pinterest” aria-hidden=”true”></i>
- <i class=”fa fa-facebook” aria-hidden=”true”></i>
- <i class=”fa fa-twitter” aria-hidden=”true”></i>
</div>
</div>
</div>
</div>
</div>
</div>
</div><!– Header Content –>
<div class=”header_container”>
<div class=”container”>
<div class=”row”>
<div class=”col”>
<div class=”header_content d-flex flex-row align-items-center justify-content-start”>
<div class=”logo_container”>
<?php
if ( function_exists( ‘the_custom_logo’ ) ) {
the_custom_logo();
}
?>
</div>
<?php wp_nav_menu(array(‘theme_location’=>’primary’)); ?>
<nav class=”main_nav_contaner ml-auto”>
<!–<ul class=”main_nav”>
<li class=”active”>home- about us
- courses
- news
- contact
–>
<div class=”search_button”><i class=”fa fa-search” aria-hidden=”true”></i></div><!– Hamburger –>
<div class=”hamburger menu_mm”>
<i class=”fa fa-bars menu_mm” aria-hidden=”true”></i>
</div>
</nav>
</div>
</div>
</div>
</div>
</div><!– Header Search Panel –>
<div class=”header_search_container”>
<div class=”container”>
<div class=”row”>
<div class=”col”>
<div class=”header_search_content d-flex flex-row align-items-center justify-content-end”>
<form action=”#” class=”header_search_form”>
<input type=”search” class=”search_input” placeholder=”Search” required=”required”>
<button class=”header_search_button d-flex flex-column align-items-center justify-content-center”>
<i class=”fa fa-search” aria-hidden=”true”></i>
</button>
</form>
</div>
</div>
</div>
</div>
</div>
</header><!– Menu –>
Forum: Fixing WordPress
In reply to: WordPress menu not showing.Thank you for a quick reply. Can you please check now? I have commented on my static menus. And, I cannot see the menu from my end.