{"id":60,"date":"2006-03-28T21:02:09","date_gmt":"2006-03-29T04:02:09","guid":{"rendered":"http:\/\/www.vanseodesign.com\/blog\/uncategorized\/3-column-css-layout\/"},"modified":"2006-03-28T21:02:09","modified_gmt":"2006-03-29T04:02:09","slug":"3-column-css-layout","status":"publish","type":"post","link":"https:\/\/vanseodesign.com\/css\/3-column-css-layout\/","title":{"rendered":"3 Column CSS Layout"},"content":{"rendered":"<p><!--adsense#banner--><\/p>\n<p>You might have guessed that given my last post was about a <a href=\"http:\/\/www.vanseodesign.com\/blog\/css\/2-column-css-layout\/\">2 Column CSS Layout<\/a>  this one would be about developing a 3 Column CSS Layout. If you did give yourself a pat on the back and a couple of brownies points.<\/p>\n<p><!--more--><\/p>\n<p>If you haven&#8217;t read that post yet you may want to since the two layouts will share a lot in common and this post will focus on the new information, namely that 3rd column. I&#8217;ll refer back to the 2 column layout throughout this post so reading it will help in understanding this one. It&#8217;s ok to read it now. Go ahead. I promise I&#8217;ll still be here when you return.<\/p>\n<p>Just as in the last example you can see the image of the 3 column layout I created for this example below. The most obvious change is the addition of the third column on the right side. I&#8217;ve also made the the menu column and the new call to action column extend down the page. They don&#8217;t need to, but often 3 column layouts will be presented this way. As with the 2 column layout click the image to see the code in action. It&#8217;ll open in a new tab or window too so you can still read along here.<\/p>\n<p><a href=\"http:\/\/www.vanseodesign.com\/blog\/3-column-layout.html\" target=\"_new\"><img loading=\"lazy\" decoding=\"async\" width=\"375\" height=\"298\" src=\"http:\/\/www.vanseodesign.com\/blog\/images\/three-column-layout.gif\" alt=\"3 Column Layout\" \/><\/a><br \/><a href=\"http:\/\/www.vanseodesign.com\/blog\/3-column-layout.html\" target=\"_new\">Click the image above to open the layout in a new window<\/a><\/p>\n<p>Once again let&#8217;s start by looking at the html structure for the page and then look at the css used to layout the various elements. And once again the html structure is quite simple.<\/p>\n<pre>\n&lt;div id=&#034;page&#034;&gt;\n &lt;div id=&#034;header&#034;&gt;Header&lt;\/div&gt;\n &lt;div id=&#034;menu&#034;&gt;Menu&lt;\/div&gt;\n &lt;div id=&#034;content&#034;&gt;Content&lt;\/div&gt;\n &lt;div id=&#034;action&#034;&gt;Call To Action&lt;\/div&gt;\n &lt;div id=&#034;footer&#034;&gt;Footer&lt;\/div&gt;\n&lt;\/div&gt;\n<\/pre>\n<p>The only new element here is the Call To Action div, so called because often you&#8217;ll place your calls to action in this right column. As with the 2 Column Layout we have several divs all enclosed within a container page div. Nothing really exciting here so let&#8217;s move on to the css.<\/p>\n<h2>Page Div<\/h2>\n<pre>\ndiv#page {\n  border:1px solid purple;\n  width:755px;\n  margin:0 auto;\n  padding:5px;\n  text-align:left;\n  position:relative\n}\n<\/pre>\n<pre>\ndiv {\n  text-align:center;\n}\n<\/pre>\n<p>The css for the page div and for the generic div are exactly the same as with the 2 column layout as you might expect with one exception. I&#8217;ve added a position of relative to the page div. The relative positioning actually doesn&#8217;t affect the page div at all in how it&#8217;s displayed, but it will become important later when we introduce our new column to the layout. I&#8217;ll save discussion of this positioning until we reach that div.<\/p>\n<h2>Header Div<\/h2>\n<pre>\ndiv#header {\n  border:2px solid red;\n  width:750px;\n  height:30px;\n}\n<\/pre>\n<p>I&#8217;ve added nothing to the header div from the 2 column example. You can read that post if you&#8217;re confused about anything here. Yawn. When are we going to see something new?<\/p>\n<h2>Menu Div<\/h2>\n<pre>\ndiv#menu {\n  border:2px solid green;\n  width:150px;\n  float:left;\n  margin:10px 0 10px 5px;\n  height:500px;\n}\n<\/pre>\n<p>There are two minor changes in the menu div though essentially it&#8217;s still the same as the last layout. I&#8217;ve reduced the width a little to allow for the third column. I&#8217;ve also increased the height just so it extends down the page. You may or may not want to set the height in your design. Again to position the menu I&#8217;ve floated it to the left. Like I said nothing really new.<\/p>\n<h2>Content Div<\/h2>\n<pre>\ndiv#content {\n  border:2px solid blue;\n  width:400px;\n  margin:10px 0 10px 175px;\n  min-height:500px;\n  _height:500px\n}\n<\/pre>\n<p>Believe it or not there&#8217;s really nothing new here with the content div either. C&#8217;mon on already? When are we going to get to the new stuff? Well I did reduce the width to make room for the new column and since out menu column has also been reduced in width I&#8217;ve decreased the left margin.<\/p>\n<p>Again keep in mind we don&#8217;t want to use any css positioning on the content div since we want it to remain in the normal document flow to help control the position of the footer. A css layout doesn&#8217;t always mean using css positioning on everything. Again nothing new from last time. Hang on just a second more. The new stuff is coming I promise.<\/p>\n<h2>Action Div<\/h2>\n<p>Finally something new. You knew it had to be new though since this column wasn&#8217;t included in the 2 column layout huh? No fooling you.<\/p>\n<pre>\ndiv#action {\n  position:absolute;\n  top:50px;\n  right:10px;\n  border:2px solid green;\n  width:150px;\n  margin:0;\n  height:500px;\n}<\/pre>\n<p>The action div shares a little in common with the menu div in it&#8217;s width and height. I even used the same border. The margin has been set to 0 however since I used absolute positioning to layout this column and didn&#8217;t need the margin to push the div away from the page div border.<\/p>\n<p>Like I just said the new column uses absolute positioning. At least I think that was me. I know I heard it somewhere. The key to css positioning is understanding where your element will sit at the default positon of 0 for the top and the left. When something is positioned in css it&#8217;s origin or (0, 0) position is at the (0, 0) position of it&#8217;s containing positioned element. Huh? Let&#8217;s use the specifics of this example to explain it again. Here&#8217;s where that relative position on the page div comes in.<\/p>\n<p>I&#8217;ve specified a top position of 50px and a right position of 10px. They key question though is 50px and 10px from where. The action div is contained by the page div. The action div is inside the page div so the page div is the container. Since I&#8217;ve added a position:relative to the page div the container div also has positioning and the origin in this case is the upper right corner of the page div. It&#8217;s upper right since I&#8217;m setting the action div at the top and the right. I could also have specified bottom and left in which case the origin would be in the lower left of the page div. I could have positioned the action div using bottom and left just with different px amounts. It&#8217;s generally easiest though to position things from the nearest corner.<\/p>\n<p>Now had there been no relative position on the page div the origin would be different. Instead of the upper right corner of the page div the origin would have been the upper right of the body. You can test this by grabbing the source and removing the position from the page div. The action div should move further to the top and right if you do. It will now be 50px and 10px from the corner of your browser window. Remember that the origin will be the closest containing div that is also positioned. If none of the containing divs have positioning applied the origin will ultimately be in the body of the page.<\/p>\n<h2>Footer Div<\/h2>\n<pre>\ndiv#footer {\n  border:2px solid red;\n  width:750px;\n  height:30px;\n}\n<\/pre>\n<p>Sadly there&#8217;s nothing at all new here. Not even a width change. Maybe I should have changed the color of the border just to have something I could say about the footer. I&#8217;ll just remind you that since we&#8217;ve kept the content div as part of the normal document flow the footer will always sit just below the content div. The distance below will be the margin-bottom we applied to the content div which here was 10px.<\/p>\n<h2>Conclusion<\/h2>\n<p>We really didn&#8217;t need to do a lot to add a third column to our 3 column css layout. We obviously needed to add the new div for the 3rd column and used absolute positioning to place it in our layout. We naturally had to allow for the space this column would occupy so we reduced the width of the other 2 columns. Pretty obvious stuff. The only trick here was to add relative positioning to the page div, which made things easier, but wasn&#8217;t necessary since we could have positioned the new div in relation to the body instead.<\/p>\n<p>I hope this 3 column layout as well as the previous 2 column layout has helped to get you started on your own css layouts. Neither layout needs to be complicated and I hope I&#8217;ve simplified how to build their basic structure. To flesh out your pages you would start adding things inside each of the divs, much in the same way you might nest tables inside of other tables. The difference here is that once you get used to using css layouts you&#8217;ll find you have more control over how you can layout your page than you would using tables. You&#8217;ll also find you&#8217;ll use less code and spacer images as well as being able to make the images you do include smaller. Your pages will load faster and you&#8217;ll find your code easier to maintain. So get out there and start practicing your 2 and 3 column css layouts.<\/p>\n<p><!--adsense#banner--><\/p>\n","protected":false},"excerpt":{"rendered":"<p>You might have guessed that given my last post was about a 2 Column CSS Layout this one would be about developing a 3 Column CSS Layout. If you did give yourself a pat on the back and a couple of brownies points.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[10],"tags":[],"series":[],"class_list":["post-60","post","type-post","status-publish","format-standard","hentry","category-css"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>3 Column CSS Layout - Vanseo Design<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vanseodesign.com\/css\/3-column-css-layout\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"3 Column CSS Layout - Vanseo Design\" \/>\n<meta property=\"og:description\" content=\"You might have guessed that given my last post was about a 2 Column CSS Layout this one would be about developing a 3 Column CSS Layout. If you did give yourself a pat on the back and a couple of brownies points.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vanseodesign.com\/css\/3-column-css-layout\/\" \/>\n<meta property=\"og:site_name\" content=\"Vanseo Design\" \/>\n<meta property=\"article:published_time\" content=\"2006-03-29T04:02:09+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/www.vanseodesign.com\/blog\/images\/three-column-layout.gif\" \/>\n<meta name=\"author\" content=\"Steven Bradley\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Steven Bradley\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/vanseodesign.com\\\/css\\\/3-column-css-layout\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vanseodesign.com\\\/css\\\/3-column-css-layout\\\/\"},\"author\":{\"name\":\"Steven Bradley\",\"@id\":\"https:\\\/\\\/vanseodesign.com\\\/#\\\/schema\\\/person\\\/470cda6ba835fb52596b2e26bcbd8fe4\"},\"headline\":\"3 Column CSS Layout\",\"datePublished\":\"2006-03-29T04:02:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/vanseodesign.com\\\/css\\\/3-column-css-layout\\\/\"},\"wordCount\":1371,\"commentCount\":21,\"image\":{\"@id\":\"https:\\\/\\\/vanseodesign.com\\\/css\\\/3-column-css-layout\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.vanseodesign.com\\\/blog\\\/images\\\/three-column-layout.gif\",\"articleSection\":[\"CSS\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/vanseodesign.com\\\/css\\\/3-column-css-layout\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vanseodesign.com\\\/css\\\/3-column-css-layout\\\/\",\"url\":\"https:\\\/\\\/vanseodesign.com\\\/css\\\/3-column-css-layout\\\/\",\"name\":\"3 Column CSS Layout - Vanseo Design\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vanseodesign.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vanseodesign.com\\\/css\\\/3-column-css-layout\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vanseodesign.com\\\/css\\\/3-column-css-layout\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/www.vanseodesign.com\\\/blog\\\/images\\\/three-column-layout.gif\",\"datePublished\":\"2006-03-29T04:02:09+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/vanseodesign.com\\\/#\\\/schema\\\/person\\\/470cda6ba835fb52596b2e26bcbd8fe4\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vanseodesign.com\\\/css\\\/3-column-css-layout\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vanseodesign.com\\\/css\\\/3-column-css-layout\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vanseodesign.com\\\/css\\\/3-column-css-layout\\\/#primaryimage\",\"url\":\"http:\\\/\\\/www.vanseodesign.com\\\/blog\\\/images\\\/three-column-layout.gif\",\"contentUrl\":\"http:\\\/\\\/www.vanseodesign.com\\\/blog\\\/images\\\/three-column-layout.gif\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vanseodesign.com\\\/css\\\/3-column-css-layout\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vanseodesign.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"CSS\",\"item\":\"https:\\\/\\\/vanseodesign.com\\\/css\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"3 Column CSS Layout\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vanseodesign.com\\\/#website\",\"url\":\"https:\\\/\\\/vanseodesign.com\\\/\",\"name\":\"Vanseo Design\",\"description\":\"Helping you build search engine friendly websites\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vanseodesign.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/vanseodesign.com\\\/#\\\/schema\\\/person\\\/470cda6ba835fb52596b2e26bcbd8fe4\",\"name\":\"Steven Bradley\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"\\\/\\\/www.gravatar.com\\\/avatar\\\/0f47bf400c3c1bafe06ee2884405baaa?s=96&#038;r=pg&#038;d=https%3A%2F%2Fvanseodesign.com%2Fblog%2Fwp-content%2Fthemes%2Fvanseo-design%2Fimages%2Fgravatar.png\",\"url\":\"\\\/\\\/www.gravatar.com\\\/avatar\\\/0f47bf400c3c1bafe06ee2884405baaa?s=96&#038;r=pg&#038;d=https%3A%2F%2Fvanseodesign.com%2Fblog%2Fwp-content%2Fthemes%2Fvanseo-design%2Fimages%2Fgravatar.png\",\"contentUrl\":\"\\\/\\\/www.gravatar.com\\\/avatar\\\/0f47bf400c3c1bafe06ee2884405baaa?s=96&#038;r=pg&#038;d=https%3A%2F%2Fvanseodesign.com%2Fblog%2Fwp-content%2Fthemes%2Fvanseo-design%2Fimages%2Fgravatar.png\",\"caption\":\"Steven Bradley\"},\"sameAs\":[\"https:\\\/\\\/www.vanseodesign.com\\\/about\\\/\"],\"url\":\"https:\\\/\\\/vanseodesign.com\\\/author\\\/vangogh\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"3 Column CSS Layout - Vanseo Design","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:\/\/vanseodesign.com\/css\/3-column-css-layout\/","og_locale":"en_US","og_type":"article","og_title":"3 Column CSS Layout - Vanseo Design","og_description":"You might have guessed that given my last post was about a 2 Column CSS Layout this one would be about developing a 3 Column CSS Layout. If you did give yourself a pat on the back and a couple of brownies points.","og_url":"https:\/\/vanseodesign.com\/css\/3-column-css-layout\/","og_site_name":"Vanseo Design","article_published_time":"2006-03-29T04:02:09+00:00","og_image":[{"url":"http:\/\/www.vanseodesign.com\/blog\/images\/three-column-layout.gif","type":"","width":"","height":""}],"author":"Steven Bradley","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Steven Bradley","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/vanseodesign.com\/css\/3-column-css-layout\/#article","isPartOf":{"@id":"https:\/\/vanseodesign.com\/css\/3-column-css-layout\/"},"author":{"name":"Steven Bradley","@id":"https:\/\/vanseodesign.com\/#\/schema\/person\/470cda6ba835fb52596b2e26bcbd8fe4"},"headline":"3 Column CSS Layout","datePublished":"2006-03-29T04:02:09+00:00","mainEntityOfPage":{"@id":"https:\/\/vanseodesign.com\/css\/3-column-css-layout\/"},"wordCount":1371,"commentCount":21,"image":{"@id":"https:\/\/vanseodesign.com\/css\/3-column-css-layout\/#primaryimage"},"thumbnailUrl":"http:\/\/www.vanseodesign.com\/blog\/images\/three-column-layout.gif","articleSection":["CSS"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/vanseodesign.com\/css\/3-column-css-layout\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/vanseodesign.com\/css\/3-column-css-layout\/","url":"https:\/\/vanseodesign.com\/css\/3-column-css-layout\/","name":"3 Column CSS Layout - Vanseo Design","isPartOf":{"@id":"https:\/\/vanseodesign.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vanseodesign.com\/css\/3-column-css-layout\/#primaryimage"},"image":{"@id":"https:\/\/vanseodesign.com\/css\/3-column-css-layout\/#primaryimage"},"thumbnailUrl":"http:\/\/www.vanseodesign.com\/blog\/images\/three-column-layout.gif","datePublished":"2006-03-29T04:02:09+00:00","author":{"@id":"https:\/\/vanseodesign.com\/#\/schema\/person\/470cda6ba835fb52596b2e26bcbd8fe4"},"breadcrumb":{"@id":"https:\/\/vanseodesign.com\/css\/3-column-css-layout\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vanseodesign.com\/css\/3-column-css-layout\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vanseodesign.com\/css\/3-column-css-layout\/#primaryimage","url":"http:\/\/www.vanseodesign.com\/blog\/images\/three-column-layout.gif","contentUrl":"http:\/\/www.vanseodesign.com\/blog\/images\/three-column-layout.gif"},{"@type":"BreadcrumbList","@id":"https:\/\/vanseodesign.com\/css\/3-column-css-layout\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vanseodesign.com\/"},{"@type":"ListItem","position":2,"name":"CSS","item":"https:\/\/vanseodesign.com\/css\/"},{"@type":"ListItem","position":3,"name":"3 Column CSS Layout"}]},{"@type":"WebSite","@id":"https:\/\/vanseodesign.com\/#website","url":"https:\/\/vanseodesign.com\/","name":"Vanseo Design","description":"Helping you build search engine friendly websites","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vanseodesign.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/vanseodesign.com\/#\/schema\/person\/470cda6ba835fb52596b2e26bcbd8fe4","name":"Steven Bradley","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"\/\/www.gravatar.com\/avatar\/0f47bf400c3c1bafe06ee2884405baaa?s=96&#038;r=pg&#038;d=https%3A%2F%2Fvanseodesign.com%2Fblog%2Fwp-content%2Fthemes%2Fvanseo-design%2Fimages%2Fgravatar.png","url":"\/\/www.gravatar.com\/avatar\/0f47bf400c3c1bafe06ee2884405baaa?s=96&#038;r=pg&#038;d=https%3A%2F%2Fvanseodesign.com%2Fblog%2Fwp-content%2Fthemes%2Fvanseo-design%2Fimages%2Fgravatar.png","contentUrl":"\/\/www.gravatar.com\/avatar\/0f47bf400c3c1bafe06ee2884405baaa?s=96&#038;r=pg&#038;d=https%3A%2F%2Fvanseodesign.com%2Fblog%2Fwp-content%2Fthemes%2Fvanseo-design%2Fimages%2Fgravatar.png","caption":"Steven Bradley"},"sameAs":["https:\/\/www.vanseodesign.com\/about\/"],"url":"https:\/\/vanseodesign.com\/author\/vangogh\/"}]}},"_links":{"self":[{"href":"https:\/\/vanseodesign.com\/wp-json\/wp\/v2\/posts\/60","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vanseodesign.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/vanseodesign.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/vanseodesign.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/vanseodesign.com\/wp-json\/wp\/v2\/comments?post=60"}],"version-history":[{"count":0,"href":"https:\/\/vanseodesign.com\/wp-json\/wp\/v2\/posts\/60\/revisions"}],"wp:attachment":[{"href":"https:\/\/vanseodesign.com\/wp-json\/wp\/v2\/media?parent=60"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vanseodesign.com\/wp-json\/wp\/v2\/categories?post=60"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vanseodesign.com\/wp-json\/wp\/v2\/tags?post=60"},{"taxonomy":"series","embeddable":true,"href":"https:\/\/vanseodesign.com\/wp-json\/wp\/v2\/series?post=60"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}