{"id":5420,"date":"2024-01-11T16:40:00","date_gmt":"2024-01-11T16:40:00","guid":{"rendered":"https:\/\/codehim.com\/?p=5420"},"modified":"2024-01-22T14:44:34","modified_gmt":"2024-01-22T09:44:34","slug":"bootstrap-4-sidebar-menu-responsive-template","status":"publish","type":"post","link":"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/","title":{"rendered":"Bootstrap 4 Sidebar Menu Responsive Template"},"content":{"rendered":"<p>The &#8220;dashboard-sidebar&#8221; is a lightweight code snippet\/template for Bootstrap 4 to create a responsive sidebar menu. This dashboard menu comes with a user profile, search box, <a href=\"https:\/\/codehim.com\/tag\/dropdown-menu\/\" target=\"_blank\" rel=\"noopener\">dropdowns<\/a>, badges, and Font Awesome icons. Basically, this menu template is specially designed for admin dashboards but it is also useful for general-purpose website templates.<\/p>\n<h2>How to create Responsive Sidebar Menu using Bootstrap 4<\/h2>\n<p>1. In the very first step, load <a href=\"https:\/\/getbootstrap.com\/docs\/4.0\/getting-started\/introduction\/\" target=\"_blank\" rel=\"noopener\">Bootstrap 4 framework<\/a>, jQuery, and <a href=\"https:\/\/fontawesome.com\/\" target=\"_blank\" rel=\"noopener\">Font Awesome<\/a> by adding the following CDN links into the head tag of your webpage.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;!-- Bootstrap 4 CSS and JavaScript --&gt;\r\n&lt;link href=\"\/\/maxcdn.bootstrapcdn.com\/bootstrap\/4.0.0\/css\/bootstrap.min.css\" rel=\"stylesheet\" id=\"bootstrap-css\"&gt;\r\n&lt;script src=\"\/\/maxcdn.bootstrapcdn.com\/bootstrap\/4.0.0\/js\/bootstrap.min.js\"&gt;&lt;\/script&gt;\r\n&lt;!-- jQuery JS --&gt;\r\n&lt;script src=\"\/\/cdnjs.cloudflare.com\/ajax\/libs\/jquery\/3.2.1\/jquery.min.js\"&gt;&lt;\/script&gt;\r\n&lt;!-- Font Awesome 5 CSS --&gt;\r\n&lt;link href=\"https:\/\/use.fontawesome.com\/releases\/v5.0.6\/css\/all.css\" rel=\"stylesheet\"&gt;\r\n&lt;!-- Style CSS --&gt;\r\n&lt;link rel=\"stylesheet\" href=\"css\/style.css\"&gt;\r\n<\/pre>\n<p>2. After that, create HTML structure for side bar menu as follows:<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;div class=\"page-wrapper chiller-theme toggled\"&gt;\r\n&lt;a id=\"show-sidebar\" class=\"btn btn-sm btn-dark\" href=\"#\"&gt;\r\n&lt;i class=\"fas fa-bars\"&gt;&lt;\/i&gt;\r\n&lt;\/a&gt;\r\n&lt;nav id=\"sidebar\" class=\"sidebar-wrapper\"&gt;\r\n&lt;div class=\"sidebar-content\"&gt;\r\n&lt;div class=\"sidebar-brand\"&gt;\r\n   &lt;a href=\"#\"&gt;pro sidebar&lt;\/a&gt;\r\n   &lt;div id=\"close-sidebar\"&gt;\r\n      &lt;i class=\"fas fa-times\"&gt;&lt;\/i&gt;\r\n   &lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;div class=\"sidebar-header\"&gt;\r\n   &lt;div class=\"user-pic\"&gt;\r\n      &lt;img class=\"img-responsive img-rounded\" src=\"https:\/\/raw.githubusercontent.com\/azouaoui-med\/pro-sidebar-template\/gh-pages\/src\/img\/user.jpg\"\r\n         alt=\"User picture\"&gt;\r\n   &lt;\/div&gt;\r\n   &lt;div class=\"user-info\"&gt;\r\n      &lt;span class=\"user-name\"&gt;Jhon\r\n      &lt;strong&gt;Smith&lt;\/strong&gt;\r\n      &lt;\/span&gt;\r\n      &lt;span class=\"user-role\"&gt;Administrator&lt;\/span&gt;\r\n      &lt;span class=\"user-status\"&gt;\r\n      &lt;i class=\"fa fa-circle\"&gt;&lt;\/i&gt;\r\n      &lt;span&gt;Online&lt;\/span&gt;\r\n      &lt;\/span&gt;\r\n   &lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;!-- sidebar-header  --&gt;\r\n&lt;div class=\"sidebar-search\"&gt;\r\n   &lt;div&gt;\r\n      &lt;div class=\"input-group\"&gt;\r\n         &lt;input type=\"text\" class=\"form-control search-menu\" placeholder=\"Search...\"&gt;\r\n         &lt;div class=\"input-group-append\"&gt;\r\n            &lt;span class=\"input-group-text\"&gt;\r\n            &lt;i class=\"fa fa-search\" aria-hidden=\"true\"&gt;&lt;\/i&gt;\r\n            &lt;\/span&gt;\r\n         &lt;\/div&gt;\r\n      &lt;\/div&gt;\r\n   &lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;!-- sidebar-search  --&gt;\r\n&lt;div class=\"sidebar-menu\"&gt;\r\n   &lt;ul&gt;\r\n      &lt;li class=\"header-menu\"&gt;\r\n         &lt;span&gt;General&lt;\/span&gt;\r\n      &lt;\/li&gt;\r\n      &lt;li class=\"sidebar-dropdown\"&gt;\r\n         &lt;a href=\"#\"&gt;\r\n         &lt;i class=\"fa fa-tachometer-alt\"&gt;&lt;\/i&gt;\r\n         &lt;span&gt;Dashboard&lt;\/span&gt;\r\n         &lt;span class=\"badge badge-pill badge-warning\"&gt;New&lt;\/span&gt;\r\n         &lt;\/a&gt;\r\n         &lt;div class=\"sidebar-submenu\"&gt;\r\n            &lt;ul&gt;\r\n               &lt;li&gt;\r\n                  &lt;a href=\"#\"&gt;Dashboard 1\r\n                  &lt;span class=\"badge badge-pill badge-success\"&gt;Pro&lt;\/span&gt;\r\n                  &lt;\/a&gt;\r\n               &lt;\/li&gt;\r\n               &lt;li&gt;\r\n                  &lt;a href=\"#\"&gt;Dashboard 2&lt;\/a&gt;\r\n               &lt;\/li&gt;\r\n               &lt;li&gt;\r\n                  &lt;a href=\"#\"&gt;Dashboard 3&lt;\/a&gt;\r\n               &lt;\/li&gt;\r\n            &lt;\/ul&gt;\r\n         &lt;\/div&gt;\r\n      &lt;\/li&gt;\r\n      &lt;li class=\"sidebar-dropdown\"&gt;\r\n         &lt;a href=\"#\"&gt;\r\n         &lt;i class=\"fa fa-shopping-cart\"&gt;&lt;\/i&gt;\r\n         &lt;span&gt;E-commerce&lt;\/span&gt;\r\n         &lt;span class=\"badge badge-pill badge-danger\"&gt;3&lt;\/span&gt;\r\n         &lt;\/a&gt;\r\n         &lt;div class=\"sidebar-submenu\"&gt;\r\n            &lt;ul&gt;\r\n               &lt;li&gt;\r\n                  &lt;a href=\"#\"&gt;Products\r\n                  &lt;\/a&gt;\r\n               &lt;\/li&gt;\r\n               &lt;li&gt;\r\n                  &lt;a href=\"#\"&gt;Orders&lt;\/a&gt;\r\n               &lt;\/li&gt;\r\n               &lt;li&gt;\r\n                  &lt;a href=\"#\"&gt;Credit cart&lt;\/a&gt;\r\n               &lt;\/li&gt;\r\n            &lt;\/ul&gt;\r\n         &lt;\/div&gt;\r\n      &lt;\/li&gt;\r\n      &lt;li class=\"sidebar-dropdown\"&gt;\r\n         &lt;a href=\"#\"&gt;\r\n         &lt;i class=\"far fa-gem\"&gt;&lt;\/i&gt;\r\n         &lt;span&gt;Components&lt;\/span&gt;\r\n         &lt;\/a&gt;\r\n         &lt;div class=\"sidebar-submenu\"&gt;\r\n            &lt;ul&gt;\r\n               &lt;li&gt;\r\n                  &lt;a href=\"#\"&gt;General&lt;\/a&gt;\r\n               &lt;\/li&gt;\r\n               &lt;li&gt;\r\n                  &lt;a href=\"#\"&gt;Panels&lt;\/a&gt;\r\n               &lt;\/li&gt;\r\n               &lt;li&gt;\r\n                  &lt;a href=\"#\"&gt;Tables&lt;\/a&gt;\r\n               &lt;\/li&gt;\r\n               &lt;li&gt;\r\n                  &lt;a href=\"#\"&gt;Icons&lt;\/a&gt;\r\n               &lt;\/li&gt;\r\n               &lt;li&gt;\r\n                  &lt;a href=\"#\"&gt;Forms&lt;\/a&gt;\r\n               &lt;\/li&gt;\r\n            &lt;\/ul&gt;\r\n         &lt;\/div&gt;\r\n      &lt;\/li&gt;\r\n      &lt;li class=\"sidebar-dropdown\"&gt;\r\n         &lt;a href=\"#\"&gt;\r\n         &lt;i class=\"fa fa-chart-line\"&gt;&lt;\/i&gt;\r\n         &lt;span&gt;Charts&lt;\/span&gt;\r\n         &lt;\/a&gt;\r\n         &lt;div class=\"sidebar-submenu\"&gt;\r\n            &lt;ul&gt;\r\n               &lt;li&gt;\r\n                  &lt;a href=\"#\"&gt;Pie chart&lt;\/a&gt;\r\n               &lt;\/li&gt;\r\n               &lt;li&gt;\r\n                  &lt;a href=\"#\"&gt;Line chart&lt;\/a&gt;\r\n               &lt;\/li&gt;\r\n               &lt;li&gt;\r\n                  &lt;a href=\"#\"&gt;Bar chart&lt;\/a&gt;\r\n               &lt;\/li&gt;\r\n               &lt;li&gt;\r\n                  &lt;a href=\"#\"&gt;Histogram&lt;\/a&gt;\r\n               &lt;\/li&gt;\r\n            &lt;\/ul&gt;\r\n         &lt;\/div&gt;\r\n      &lt;\/li&gt;\r\n      &lt;li class=\"sidebar-dropdown\"&gt;\r\n         &lt;a href=\"#\"&gt;\r\n         &lt;i class=\"fa fa-globe\"&gt;&lt;\/i&gt;\r\n         &lt;span&gt;Maps&lt;\/span&gt;\r\n         &lt;\/a&gt;\r\n         &lt;div class=\"sidebar-submenu\"&gt;\r\n            &lt;ul&gt;\r\n               &lt;li&gt;\r\n                  &lt;a href=\"#\"&gt;Google maps&lt;\/a&gt;\r\n               &lt;\/li&gt;\r\n               &lt;li&gt;\r\n                  &lt;a href=\"#\"&gt;Open street map&lt;\/a&gt;\r\n               &lt;\/li&gt;\r\n            &lt;\/ul&gt;\r\n         &lt;\/div&gt;\r\n      &lt;\/li&gt;\r\n      &lt;li class=\"header-menu\"&gt;\r\n         &lt;span&gt;Extra&lt;\/span&gt;\r\n      &lt;\/li&gt;\r\n      &lt;li&gt;\r\n         &lt;a href=\"#\"&gt;\r\n         &lt;i class=\"fa fa-book\"&gt;&lt;\/i&gt;\r\n         &lt;span&gt;Documentation&lt;\/span&gt;\r\n         &lt;span class=\"badge badge-pill badge-primary\"&gt;Beta&lt;\/span&gt;\r\n         &lt;\/a&gt;\r\n      &lt;\/li&gt;\r\n      &lt;li&gt;\r\n         &lt;a href=\"#\"&gt;\r\n         &lt;i class=\"fa fa-calendar\"&gt;&lt;\/i&gt;\r\n         &lt;span&gt;Calendar&lt;\/span&gt;\r\n         &lt;\/a&gt;\r\n      &lt;\/li&gt;\r\n      &lt;li&gt;\r\n         &lt;a href=\"#\"&gt;\r\n         &lt;i class=\"fa fa-folder\"&gt;&lt;\/i&gt;\r\n         &lt;span&gt;Examples&lt;\/span&gt;\r\n         &lt;\/a&gt;\r\n      &lt;\/li&gt;\r\n   &lt;\/ul&gt;\r\n&lt;\/div&gt;\r\n<\/pre>\n<p>3. Finally, add the following jQuery function to activate the Bootstrap 4 sidebar menu template.<\/p>\n<pre class=\"prettyprint linenums lang-js\">jQuery(function ($) {\r\n\r\n\t$(\".sidebar-dropdown &gt; a\").click(function () {\r\n\t\t$(\".sidebar-submenu\").slideUp(200);\r\n\t\tif (\r\n\t\t\t$(this)\r\n\t\t\t.parent()\r\n\t\t\t.hasClass(\"active\")\r\n\t\t) {\r\n\t\t\t$(\".sidebar-dropdown\").removeClass(\"active\");\r\n\t\t\t$(this)\r\n\t\t\t\t.parent()\r\n\t\t\t\t.removeClass(\"active\");\r\n\t\t} else {\r\n\t\t\t$(\".sidebar-dropdown\").removeClass(\"active\");\r\n\t\t\t$(this)\r\n\t\t\t\t.next(\".sidebar-submenu\")\r\n\t\t\t\t.slideDown(200);\r\n\t\t\t$(this)\r\n\t\t\t\t.parent()\r\n\t\t\t\t.addClass(\"active\");\r\n\t\t}\r\n\t});\r\n\r\n\t$(\"#close-sidebar\").click(function () {\r\n\t\t$(\".page-wrapper\").removeClass(\"toggled\");\r\n\t});\r\n\t$(\"#show-sidebar\").click(function () {\r\n\t\t$(\".page-wrapper\").addClass(\"toggled\");\r\n\t});\r\n\r\n\r\n});\r\n<\/pre>\n<p>That&#8217;s all! hopefully, this responsive sidebar menu template is helpful for your Bootstrap 4 projects. If you have any questions or suggestions, let me know by comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The &#8220;dashboard-sidebar&#8221; is a lightweight code snippet\/template for Bootstrap 4 to create a responsive sidebar menu. This dashboard menu comes&#8230;<\/p>\n","protected":false},"author":1,"featured_media":5423,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[123,144],"tags":[14],"class_list":["post-5420","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bootstrap","category-bootstrap-navbars","tag-vertical-menu"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Bootstrap 4 Sidebar Menu Responsive Template &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a lightweight responsive Bootstrap 4 sidebar menu template with icons. This sidebar menu template is useful for admin dashboard.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Bootstrap 4 Sidebar Menu Responsive Template &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a lightweight responsive Bootstrap 4 sidebar menu template with icons. This sidebar menu template is useful for admin dashboard.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/\" \/>\n<meta property=\"og:site_name\" content=\"CodeHim\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/codehimofficial\" \/>\n<meta property=\"article:published_time\" content=\"2024-01-11T16:40:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T09:44:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2021\/08\/bootstrap-4-sidebar-menu-responsive-template.png\" \/>\n\t<meta property=\"og:image:width\" content=\"844\" \/>\n\t<meta property=\"og:image:height\" content=\"633\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Asif Mughal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:site\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Asif Mughal\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Bootstrap 4 Sidebar Menu Responsive Template\",\"datePublished\":\"2024-01-11T16:40:00+00:00\",\"dateModified\":\"2024-01-22T09:44:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/\"},\"wordCount\":141,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2021\/08\/bootstrap-4-sidebar-menu-responsive-template.png\",\"keywords\":[\"Vertical Menu\"],\"articleSection\":[\"Bootstrap\",\"Bootstrap Navbars\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/\",\"url\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/\",\"name\":\"Bootstrap 4 Sidebar Menu Responsive Template &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2021\/08\/bootstrap-4-sidebar-menu-responsive-template.png\",\"datePublished\":\"2024-01-11T16:40:00+00:00\",\"dateModified\":\"2024-01-22T09:44:34+00:00\",\"description\":\"Here is a lightweight responsive Bootstrap 4 sidebar menu template with icons. This sidebar menu template is useful for admin dashboard.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2021\/08\/bootstrap-4-sidebar-menu-responsive-template.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2021\/08\/bootstrap-4-sidebar-menu-responsive-template.png\",\"width\":844,\"height\":633,\"caption\":\"Bootstrap 4 Sidebar Menu Responsive Template\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Bootstrap\",\"item\":\"https:\/\/codehim.com\/category\/bootstrap\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Bootstrap 4 Sidebar Menu Responsive Template\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/codehim.com\/#website\",\"url\":\"https:\/\/codehim.com\/\",\"name\":\"CodeHim\",\"description\":\"Web Design Code Snippets\",\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"alternateName\":\"Web Design Codes\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/codehim.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/codehim.com\/#organization\",\"name\":\"CodeHim - Web Design Code & Scripts\",\"url\":\"https:\/\/codehim.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"contentUrl\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"width\":280,\"height\":280,\"caption\":\"CodeHim - Web Design Code & Scripts\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/codehimofficial\",\"https:\/\/x.com\/CodeHimOfficial\",\"https:\/\/www.instagram.com\/codehim\/\",\"https:\/\/www.linkedin.com\/company\/codehim\",\"https:\/\/co.pinterest.com\/codehim\/\",\"https:\/\/www.youtube.com\/@codehim\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\",\"name\":\"Asif Mughal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"caption\":\"Asif Mughal\"},\"description\":\"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.\",\"sameAs\":[\"https:\/\/codehim.com\"],\"url\":\"https:\/\/codehim.com\/author\/asif-mughal\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Bootstrap 4 Sidebar Menu Responsive Template &#8212; CodeHim","description":"Here is a lightweight responsive Bootstrap 4 sidebar menu template with icons. This sidebar menu template is useful for admin dashboard.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/","og_locale":"en_US","og_type":"article","og_title":"Bootstrap 4 Sidebar Menu Responsive Template &#8212; CodeHim","og_description":"Here is a lightweight responsive Bootstrap 4 sidebar menu template with icons. This sidebar menu template is useful for admin dashboard.","og_url":"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-11T16:40:00+00:00","article_modified_time":"2024-01-22T09:44:34+00:00","og_image":[{"width":844,"height":633,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2021\/08\/bootstrap-4-sidebar-menu-responsive-template.png","type":"image\/png"}],"author":"Asif Mughal","twitter_card":"summary_large_image","twitter_creator":"@CodeHimOfficial","twitter_site":"@CodeHimOfficial","twitter_misc":{"Written by":"Asif Mughal","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Bootstrap 4 Sidebar Menu Responsive Template","datePublished":"2024-01-11T16:40:00+00:00","dateModified":"2024-01-22T09:44:34+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/"},"wordCount":141,"commentCount":2,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2021\/08\/bootstrap-4-sidebar-menu-responsive-template.png","keywords":["Vertical Menu"],"articleSection":["Bootstrap","Bootstrap Navbars"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/","url":"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/","name":"Bootstrap 4 Sidebar Menu Responsive Template &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2021\/08\/bootstrap-4-sidebar-menu-responsive-template.png","datePublished":"2024-01-11T16:40:00+00:00","dateModified":"2024-01-22T09:44:34+00:00","description":"Here is a lightweight responsive Bootstrap 4 sidebar menu template with icons. This sidebar menu template is useful for admin dashboard.","breadcrumb":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2021\/08\/bootstrap-4-sidebar-menu-responsive-template.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2021\/08\/bootstrap-4-sidebar-menu-responsive-template.png","width":844,"height":633,"caption":"Bootstrap 4 Sidebar Menu Responsive Template"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-4-sidebar-menu-responsive-template\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Bootstrap","item":"https:\/\/codehim.com\/category\/bootstrap\/"},{"@type":"ListItem","position":3,"name":"Bootstrap 4 Sidebar Menu Responsive Template"}]},{"@type":"WebSite","@id":"https:\/\/codehim.com\/#website","url":"https:\/\/codehim.com\/","name":"CodeHim","description":"Web Design Code Snippets","publisher":{"@id":"https:\/\/codehim.com\/#organization"},"alternateName":"Web Design Codes","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codehim.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codehim.com\/#organization","name":"CodeHim - Web Design Code & Scripts","url":"https:\/\/codehim.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/","url":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","contentUrl":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","width":280,"height":280,"caption":"CodeHim - Web Design Code & Scripts"},"image":{"@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/codehimofficial","https:\/\/x.com\/CodeHimOfficial","https:\/\/www.instagram.com\/codehim\/","https:\/\/www.linkedin.com\/company\/codehim","https:\/\/co.pinterest.com\/codehim\/","https:\/\/www.youtube.com\/@codehim"]},{"@type":"Person","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed","name":"Asif Mughal","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","caption":"Asif Mughal"},"description":"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.","sameAs":["https:\/\/codehim.com"],"url":"https:\/\/codehim.com\/author\/asif-mughal\/"}]}},"views":27661,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/5420","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/comments?post=5420"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/5420\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/5423"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=5420"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=5420"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=5420"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}