{"id":1864,"date":"2012-10-14T20:29:50","date_gmt":"2012-10-14T20:29:50","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2012\/10\/14\/css-to-sidebar\/"},"modified":"2021-08-16T23:34:03","modified_gmt":"2021-08-17T03:34:03","slug":"css-to-sidebar","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/","title":{"rendered":"Adding CSS to sidebar items in a Joomla 3.1 template"},"content":{"rendered":"<p><a href=\"\/support\/wp-content\/uploads\/2012\/10\/edu_joomla-3_create-template_login-form-now-has-css.jpg\" rel=\"lightbox-0\"><img decoding=\"async\" width=\"1000\" height=\"620\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/edu_joomla-3_create-template_login-form-now-has-css.jpg\" class=\"optimized-lcp-image\" alt=\"login-form-now-has-css\" loading=\"eager\" fetchpriority=\"high\" sizes=\"(max-width: 768px) 100vw, 768px\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/edu_joomla-3_create-template_login-form-now-has-css.jpg 1000w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/edu_joomla-3_create-template_login-form-now-has-css-300x186.jpg 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/edu_joomla-3_create-template_login-form-now-has-css-768x476.jpg 768w\"><\/a><\/p>\n<div style=\"clear: both;\"><\/div>\n<p>In the last tutorial within our <a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/starting-template\/\">building a basic Joomla 3.0 template<\/a> tutorial series, we showed you <a href=\"\/support\/edu\/joomla\/joomla-3\/css-login-form\/\">how to add style to login form using CSS<\/a>. You can see in the screenshot to the right how this added a grey background and rounded corner to the login form. You can also see however that the other items in the sidebar still do not have any style added to them.<\/p>\n<div style=\"clear: both;\"><\/div>\n<div><a href=\"\/support\/wp-content\/uploads\/2012\/10\/edu_joomla-3_create-template_css-classes-labeled.jpg\" rel=\"lightbox-0\"><img loading=\"lazy\" decoding=\"async\" class=\"std_ss alignright size-full wp-image-8613\" style=\"float: right; margin: 0px 0px 15px 15px;\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/edu_joomla-3_create-template_css-classes-labeled.jpg\" alt=\"css-classes-labeled\" width=\"1274\" height=\"873\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/edu_joomla-3_create-template_css-classes-labeled.jpg 1274w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/edu_joomla-3_create-template_css-classes-labeled-300x206.jpg 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/edu_joomla-3_create-template_css-classes-labeled-768x526.jpg 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/edu_joomla-3_create-template_css-classes-labeled-1024x702.jpg 1024w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/a>\n<div style=\"clear: both;\"><\/div>\n<h2>Locating our CSS classes<\/h2>\n<p>To add style to the rest of the items in the sidebar, we need to know either their classes or ids. We\u2019ve done the work for you and labeled each section and the corresponding label we used to modify their styles (see the screenshot to the right).<\/p>\n<p>As you can see, we\u2019re working with the following items:<\/p>\n<ul>\n<li>ul.nav.menu<\/li>\n<li>.category_module<\/li>\n<li>.weblinks<\/li>\n<li>.mostread<\/li>\n<li>.syndicate-module<\/li>\n<\/ul>\n<div style=\"clear: both;\"><\/div>\n<\/div>\n<h2>The final look after making changes<\/h2>\n<p><a href=\"\/support\/wp-content\/uploads\/2012\/10\/edu_joomla-3_create-template_all-right-sidebar-now-has-style.jpg\" rel=\"lightbox-0\"><img loading=\"lazy\" decoding=\"async\" class=\"std_ss\" style=\"margin: 0px 0px 15px 15px; float: right;\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/edu_joomla-3_create-template_all-right-sidebar-now-has-style.jpg\" alt=\"all-right-sidebar-now-has-style\" width=\"1000\" height=\"619\"><\/a><\/p>\n<div style=\"clear: both;\"><\/div>\n<p>Before we show you the CSS code that we used to style the rest of the modules in the sidebar, we\u2019ll skip ahead and show you the results. The screenshot to the right shows how our Joomla 3.0 template looks after we finished styling all of the elements in the right sidebar.<\/p>\n<div style=\"clear: both;\"><\/div>\n<h2>Applying a uniform style to the sidebar<\/h2>\n<h3>Adding the rounded corners<\/h3>\n<p>Because our login form has a grey background and rounded corners, we\u2019ll apply the same style to the other sidebar modules. We don\u2019t need to copy the code we already added, instead we can add to it. In the code below, the green text is the original css code for the login form, and the text in red is the updates.<\/p>\n<pre class=\"code_block\"><strong>.mostread,\n.weblinks,\n.category-module,\n.syndicate-module,\nul.nav.menu,\n<\/strong><strong>#login-form {\n        -moz-border-radius: 5px;\n        -webkit-border-radius: 5px;\n        -khtml-border-radius: 5px;\n        border-radius: 5px;\n        background:#eee;\n        border:1px solid #ccc;\n        padding:5px;\n        margin:0px 0px 10px 0px;\n}<\/strong><\/pre>\n<h3>Adjusting padding on the unordered lists<\/h3>\n<p>Because most of the modules are actually unordered lists, we found that adding some padding to the lists made them look much better:<\/p>\n<pre class=\"code_block\">.mostread, \n.weblinks, \n.category-module {\n         padding:0px 0px 0px 20px; \n}<\/pre>\n<h3>Setting the .syndicate-module to be a block element<\/h3>\n<p>Finally, for everything to appear correctly, the .syndicate-module must be set to a block element:<\/p>\n<pre class=\"code_block\">.syndicate-module {\n         display:block; \n}<\/pre>\n<h3>Our final stylesheet<\/h3>\n<p>After making the updates mentioned above, our <strong>css\/style.css<\/strong> file looks like the following:<\/p>\n<pre class=\"code_block\">.mostread, \n.weblinks, \n.category-module, \n.syndicate-module, \nul.nav.menu, \n#login-form {\n         -moz-border-radius: 5px;\n         -webkit-border-radius: 5px;\n         -khtml-border-radius: 5px;\n         border-radius: 5px;\n         background:#eee;\n         border:1px solid #ccc;\n         padding:5px;\n         margin:0px 0px 10px 0px; \n}\n\n.mostread, \n.weblinks, \n.category-module {\n         padding:0px 0px 0px 20px; \n} \n\n.syndicate-module {\n         display:block; \n}<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>In the last tutorial within our building a basic Joomla 3.0 template tutorial series, we showed you how to add style to login form using CSS. You can see in the screenshot to the right how this added a grey background and rounded corner to the login form. You can also see however that the<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/\"> Read More ><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4403,94],"tags":[4404],"class_list":["post-1864","post","type-post","status-publish","format-standard","hentry","category-joomla","category-joomla-3","tag-joomla-v3"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Adding CSS to sidebar items in a Joomla 3.1 template | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"In this Joomla 3.0 tutorial, we&#039;ll show you how to style the modules in our template&#039;s right sidebar using CSS.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Adding CSS to sidebar items in a Joomla 3.1 template | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"In this Joomla 3.0 tutorial, we&#039;ll show you how to style the modules in our template&#039;s right sidebar using CSS.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2012-10-14T20:29:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-17T03:34:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/edu_joomla-3_create-template_login-form-now-has-css.jpg\" \/>\n<meta name=\"author\" content=\"Brad Markle\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Brad Markle\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/\"},\"author\":{\"name\":\"Brad Markle\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5ae05d1210b0ef63c437ccedce2799bf\"},\"headline\":\"Adding CSS to sidebar items in a Joomla 3.1 template\",\"datePublished\":\"2012-10-14T20:29:50+00:00\",\"dateModified\":\"2021-08-17T03:34:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/\"},\"wordCount\":350,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/edu_joomla-3_create-template_login-form-now-has-css.jpg\",\"keywords\":[\"Joomla v3\"],\"articleSection\":[\"Joomla\",\"Joomla 3\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/\",\"name\":\"Adding CSS to sidebar items in a Joomla 3.1 template | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/edu_joomla-3_create-template_login-form-now-has-css.jpg\",\"datePublished\":\"2012-10-14T20:29:50+00:00\",\"dateModified\":\"2021-08-17T03:34:03+00:00\",\"description\":\"In this Joomla 3.0 tutorial, we'll show you how to style the modules in our template's right sidebar using CSS.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/edu_joomla-3_create-template_login-form-now-has-css.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/edu_joomla-3_create-template_login-form-now-has-css.jpg\",\"width\":1000,\"height\":620,\"caption\":\"login-form-now-has-css\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Adding CSS to sidebar items in a Joomla 3.1 template\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5ae05d1210b0ef63c437ccedce2799bf\",\"name\":\"Brad Markle\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/bradm\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Adding CSS to sidebar items in a Joomla 3.1 template | InMotion Hosting","description":"In this Joomla 3.0 tutorial, we'll show you how to style the modules in our template's right sidebar using CSS.","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:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/","og_locale":"en_US","og_type":"article","og_title":"Adding CSS to sidebar items in a Joomla 3.1 template | InMotion Hosting","og_description":"In this Joomla 3.0 tutorial, we'll show you how to style the modules in our template's right sidebar using CSS.","og_url":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2012-10-14T20:29:50+00:00","article_modified_time":"2021-08-17T03:34:03+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/edu_joomla-3_create-template_login-form-now-has-css.jpg","type":"","width":"","height":""}],"author":"Brad Markle","twitter_card":"summary_large_image","twitter_creator":"@InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"Brad Markle","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/"},"author":{"name":"Brad Markle","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5ae05d1210b0ef63c437ccedce2799bf"},"headline":"Adding CSS to sidebar items in a Joomla 3.1 template","datePublished":"2012-10-14T20:29:50+00:00","dateModified":"2021-08-17T03:34:03+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/"},"wordCount":350,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/edu_joomla-3_create-template_login-form-now-has-css.jpg","keywords":["Joomla v3"],"articleSection":["Joomla","Joomla 3"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/","url":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/","name":"Adding CSS to sidebar items in a Joomla 3.1 template | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/edu_joomla-3_create-template_login-form-now-has-css.jpg","datePublished":"2012-10-14T20:29:50+00:00","dateModified":"2021-08-17T03:34:03+00:00","description":"In this Joomla 3.0 tutorial, we'll show you how to style the modules in our template's right sidebar using CSS.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/edu_joomla-3_create-template_login-form-now-has-css.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2012\/10\/edu_joomla-3_create-template_login-form-now-has-css.jpg","width":1000,"height":620,"caption":"login-form-now-has-css"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/edu\/joomla\/joomla-3\/css-to-sidebar\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Adding CSS to sidebar items in a Joomla 3.1 template"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5ae05d1210b0ef63c437ccedce2799bf","name":"Brad Markle","url":"https:\/\/www.inmotionhosting.com\/support\/author\/bradm\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/1864","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=1864"}],"version-history":[{"count":4,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/1864\/revisions"}],"predecessor-version":[{"id":85513,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/1864\/revisions\/85513"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=1864"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=1864"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=1864"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}