{"id":20592,"date":"2017-04-03T13:02:18","date_gmt":"2017-04-03T18:02:18","guid":{"rendered":"https:\/\/audiotheme.com\/?p=20592"},"modified":"2022-11-25T14:15:35","modified_gmt":"2022-11-25T20:15:35","slug":"customizing-css-wordpress","status":"publish","type":"post","link":"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/","title":{"rendered":"Customizing CSS in WordPress"},"content":{"rendered":"<h2>What is CSS?<\/h2>\n<div class=\"lead\"><abbr title=\"Cascading Style Sheet\">CSS<\/abbr> is what controls the style and layout of all your website pages and components. CSS is also responsible for the responsiveness that makes your site look good on <a href=\"\u201dhttp:\/\/blog.sonicbids.com\/why-having-a-mobile-friendly-website-for-your-music-is-important-now-more-than-ever\u201d\">mobile devices<\/a>. Customizing CSS in WordPress is one of the most efficient and effective ways to make your website stand out from others using the same theme.<\/div>\n<p><!--more--><\/p>\n<p>When you pick a WordPress theme, you\u2019ll find a file called <strong>style.css<\/strong> delivered with the theme files. As a heads up, you <strong>never<\/strong> want to make changes directly to that file, I\u2019ll explain why later.<\/p>\n<p>When CSS was invented over 20 years ago, people immediately saw potential. Creating one style sheet saves hours of work, and gives you more control over entire sites. Throughout its history, CSS has made major improvements, constantly streamlining the ease of use, and efficiency of style sheets.<\/p>\n<h2>So what does customizing CSS in WordPress mean for you?<\/h2>\n<p>In support, we get a ton of emails that look like this:<\/p>\n<blockquote><p>\u201c<em>Hi!<\/em><\/p>\n<p>I love your Obsidian theme, but I\u2019d really like to change the paragraph text color. Is this possible?\u201d<\/p><\/blockquote>\n<p>While our support policy prevents us from being able to help users make major changes, we\u2019re happy to help with requests that don\u2019t change the original programming of the theme. These are usually done with custom CSS snippets.<\/p>\n<p>Let&#8217;s cover the basics of customizing CSS in WordPress.<\/p>\n<h2>The Basics<\/h2>\n<p>CSS was created to tell the HTML elements in a web page where to go and what to look like. <abbr title=\"Hyper Text Markup Language\">HTML<\/abbr> was created many years ago in conjunction with the start of the internet. It was meant to describe content on a page. This is why you\u2019ll see paragraphs wrapped in <code>&lt;p&gt;&lt;\/p&gt;<\/code> tags.<\/p>\n<p>As websites evolved in their capabilities and styling, developers knew they needed to find another solution to cut down on code clutter and development time. The result of their efforts was the <strong>C<\/strong>ascading <strong>S<\/strong>tyle <strong>S<\/strong>heet.<\/p>\n<p>With a single snippet of CSS, you can style all of the paragraphs on one site:<\/p>\n<pre><code>p {\r\n\tcolor: white;\r\n}<\/code><\/pre>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-20629 size-full\" src=\"https:\/\/audiotheme.com\/content\/uploads\/css-2.jpg\" alt=\"Customizing CSS in WordPress Syntax\" width=\"720\" height=\"400\" srcset=\"https:\/\/audiotheme.com\/content\/uploads\/css-2.jpg 720w, https:\/\/audiotheme.com\/content\/uploads\/css-2-300x167.jpg 300w\" sizes=\"auto, (max-width: 720px) 100vw, 720px\" \/><\/p>\n<p>In this example, the <code>p<\/code> is the <strong>selector<\/strong>, meaning the element we want to modify. <code>Color<\/code> is the <strong>property<\/strong>, meaning the aspect about the paragraphs we want to change, text color. <code>White<\/code> is the <strong>value<\/strong>, or the actual color we want the text\u00a0of each paragraph to be. This CSS snippet means that every normal paragraph on the website will include white text. The semicolon at the end of the value signifies the end of that property\/value declaration. The curly brackets placed after the selector and after the value are what notify the browser of what property and values to include for each selector.<\/p>\n<h2>IDs and Classes<\/h2>\n<p>You\u2019ll notice above that the <code>p<\/code> selector doesn\u2019t include any punctuation before the <code>p<\/code>. This is because it is a site-wide attribute. You can however, also make changes to certain parts or aspects of your theme using id or class selectors.<\/p>\n<p><strong>ID selectors<\/strong> begin with a <code>#<\/code> but you\u2019ll rarely use these to make CSS changes to our themes.<\/p>\n<p><strong>Class selectors<\/strong> begin with a <code>.<\/code> and will be used much more often to tweak aspects of AudioThemes. For example, if you wanted to change the color of only the site title on our <a href=\"https:\/\/audiotheme.com\/view\/obsidian\/\">Obsidian<\/a> theme, you would use the following:<\/p>\n<pre><code>.site-title a {\r\n\tcolor: red;\r\n}<\/code><\/pre>\n<p>The result:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-20608 size-full\" src=\"https:\/\/audiotheme.com\/content\/uploads\/site-title-css.jpg\" alt=\"Customizing CSS in WordPress site title\" width=\"720\" height=\"442\" srcset=\"https:\/\/audiotheme.com\/content\/uploads\/site-title-css.jpg 720w, https:\/\/audiotheme.com\/content\/uploads\/site-title-css-300x184.jpg 300w\" sizes=\"auto, (max-width: 720px) 100vw, 720px\" \/><\/p>\n<h2>How do I add custom CSS to my WordPress site?<\/h2>\n<p>Earlier, I mentioned that you never want to make changes directly to your theme\u2019s style.css. It\u2019s worth noting that you should <strong>never<\/strong> make changes directly to any of your theme files. Why? If you make a mistake, sometimes as simple as leaving out a period, your site could be affected and in some cases even completely crash.<\/p>\n<p>When we\u2019re providing support, we also rely on the fact that the theme files are the same for every customer using a specific product, which allows us to be more helpful. Finally, if you do succeed in making changes to your theme files directly and run updates to the theme, they will all be completely lost, as the theme files get replaced with the new versions.<\/p>\n<p>There are two proper ways to make CSS changes to your theme. The first involves creating a child theme and adding snippets to the <strong>child theme\u2019s<\/strong> style sheet. Luckily, this is an easy process if you\u2019re using the AudioTheme Agent.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-15598\" src=\"https:\/\/audiotheme.com\/content\/uploads\/audiotheme-agent-product-links.png\" alt=\"\" width=\"747\" height=\"500\" srcset=\"https:\/\/audiotheme.com\/content\/uploads\/audiotheme-agent-product-links.png 747w, https:\/\/audiotheme.com\/content\/uploads\/audiotheme-agent-product-links-300x201.png 300w\" sizes=\"auto, (max-width: 747px) 100vw, 747px\" \/><\/p>\n<p>The second option is using the <em>Additional CSS<\/em> area of the WordPress customizer to add your CSS snippets. If you are only planning on adjusting the theme\u2019s CSS, this area is all you need to use. It is worth noting that anything added to the <em>Additional CSS<\/em> area of the customizer is specific to the theme you are currently using. If you change themes, your CSS changes will not be carried over to the new theme, but will be preserved if you want to change back.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-20597 size-full\" src=\"https:\/\/audiotheme.com\/content\/uploads\/additional-css-customizer.jpg\" alt=\"Customizing CSS in WordPress Additional CSS area\" width=\"720\" height=\"442\" srcset=\"https:\/\/audiotheme.com\/content\/uploads\/additional-css-customizer.jpg 720w, https:\/\/audiotheme.com\/content\/uploads\/additional-css-customizer-300x184.jpg 300w\" sizes=\"auto, (max-width: 720px) 100vw, 720px\" \/><\/p>\n<h2>Common AudioTheme CSS changes<\/h2>\n<p>Here are some of the most common requests we get in support that can be updated with CSS.<\/p>\n<p><strong>Change the body text color<\/strong><\/p>\n<pre><code>body {\r\n\tcolor: red;\r\n}<\/code><\/pre>\n<p><strong>Change the site title text color<\/strong><\/p>\n<pre><code>.site-title a {\r\n\tcolor: red;\r\n}<\/code><\/pre>\n<p><strong>Disable the scroll feature on a Cue playlist so that it displays as one long list<\/strong><\/p>\n<pre><code>.cue-playlist .cue-tracks {\r\n\tmax-height: none;\r\n}<\/code><\/pre>\n<p><strong>Remove the entry meta details (author and date information)\u00a0from blog posts\u00a0<\/strong><br \/>\nThe following snippet works for most of our themes, but there are a few exceptions. Send us a support request if you have any questions.<\/p>\n<pre><code>.entry-meta {\r\n\tdisplay: none;\r\n}<\/code><\/pre>\n<p><strong>Remove the time rail from CueBar<\/strong><br \/>\nPopular with livestream users who don&#8217;t need to jump to a specific point in an audio file.<\/p>\n<pre><code>.mejs-controls .mejs-time-rail .mejs-time-total {\r\n\tdisplay: none;\r\n}<\/code><\/pre>\n<p>CSS snippets are a great way to add some customization to your site, making it stand out from others who are using the same theme. If you\u2019re interested in learning more about\u00a0CSS and its capabilities, I\u2019d recommend Shay Howe&#8217;s <a href=\"http:\/\/learn.shayhowe.com\/html-css\/getting-to-know-css\/\"> &#8220;Getting To Know CSS&#8221;<\/a>.<\/p>\n<h2>Have questions?<\/h2>\n<p>If you\u2019re looking for a specific CSS change, login to your <a href=\"https:\/\/audiotheme.com\/account\/\">AudioTheme Account<\/a> and send us a support request. We\u2019re happy to help, as long as it falls within our <a href=\"https:\/\/audiotheme.com\/terms\/#support\">support policy<\/a>. Just make sure you have an active AudioTheme subscription!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>What is CSS? CSS is what controls the style and layout of all your website pages and components. CSS is also responsible for the responsiveness that makes your site look good on mobile devices. Customizing CSS in WordPress is one of the most efficient and effective ways to make your website stand out from others &hellip; <a class=\"more-link\" href=\"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/\">Read More<\/a><\/p>\n","protected":false},"author":941,"featured_media":20620,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":{"0":"post-20592","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-chatter","8":"entry"},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.1 (Yoast SEO v27.1.1) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Customizing CSS in WordPress \u2014 AudioTheme<\/title>\n<meta name=\"description\" content=\"Customizing CSS in WordPress allows you to make minor changes that can separate your site from others using the same theme.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Customizing CSS in WordPress\" \/>\n<meta property=\"og:description\" content=\"Customizing CSS in WordPress allows you to make minor changes that can separate your site from others using the same theme.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/\" \/>\n<meta property=\"og:site_name\" content=\"AudioTheme\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/AudioTheme\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/annaditommaso\" \/>\n<meta property=\"article:published_time\" content=\"2017-04-03T18:02:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-11-25T20:15:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/audiotheme.com\/content\/uploads\/customizing-css-wordpress-sm.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"960\" \/>\n\t<meta property=\"og:image:height\" content=\"480\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Anna DiTommaso\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@annadito\" \/>\n<meta name=\"twitter:site\" content=\"@audiotheme\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Anna DiTommaso\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/\"},\"author\":{\"name\":\"Anna DiTommaso\",\"@id\":\"https:\/\/audiotheme.com\/#\/schema\/person\/38868de0ea03bbbda70eac902aedc4a4\"},\"headline\":\"Customizing CSS in WordPress\",\"datePublished\":\"2017-04-03T18:02:18+00:00\",\"dateModified\":\"2022-11-25T20:15:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/\"},\"wordCount\":1019,\"publisher\":{\"@id\":\"https:\/\/audiotheme.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/audiotheme.com\/content\/uploads\/customizing-css-wordpress.jpg\",\"articleSection\":[\"General\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/\",\"url\":\"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/\",\"name\":\"Customizing CSS in WordPress \u2014 AudioTheme\",\"isPartOf\":{\"@id\":\"https:\/\/audiotheme.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/audiotheme.com\/content\/uploads\/customizing-css-wordpress.jpg\",\"datePublished\":\"2017-04-03T18:02:18+00:00\",\"dateModified\":\"2022-11-25T20:15:35+00:00\",\"description\":\"Customizing CSS in WordPress allows you to make minor changes that can separate your site from others using the same theme.\",\"breadcrumb\":{\"@id\":\"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/#primaryimage\",\"url\":\"https:\/\/audiotheme.com\/content\/uploads\/customizing-css-wordpress.jpg\",\"contentUrl\":\"https:\/\/audiotheme.com\/content\/uploads\/customizing-css-wordpress.jpg\",\"width\":960,\"height\":480},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/audiotheme.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Customizing CSS in WordPress\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/audiotheme.com\/#website\",\"url\":\"https:\/\/audiotheme.com\/\",\"name\":\"AudioTheme\",\"description\":\"Premium WordPress Music Themes\",\"publisher\":{\"@id\":\"https:\/\/audiotheme.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/audiotheme.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/audiotheme.com\/#organization\",\"name\":\"AudioTheme\",\"url\":\"https:\/\/audiotheme.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/audiotheme.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/audiotheme.com\/content\/uploads\/audiotheme-stacked.jpg\",\"contentUrl\":\"https:\/\/audiotheme.com\/content\/uploads\/audiotheme-stacked.jpg\",\"width\":550,\"height\":550,\"caption\":\"AudioTheme\"},\"image\":{\"@id\":\"https:\/\/audiotheme.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/AudioTheme\",\"https:\/\/x.com\/audiotheme\",\"https:\/\/instagram.com\/audiotheme\/\",\"https:\/\/www.youtube.com\/channel\/UCzppZe6jnM1snoZC5pQF6Ow\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/audiotheme.com\/#\/schema\/person\/38868de0ea03bbbda70eac902aedc4a4\",\"name\":\"Anna DiTommaso\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/audiotheme.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/78704c542072937c7b2a9bcf5138890f58332084d40def3ed284619d3476b3d3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/78704c542072937c7b2a9bcf5138890f58332084d40def3ed284619d3476b3d3?s=96&d=mm&r=g\",\"caption\":\"Anna DiTommaso\"},\"description\":\"During the days I'm a marketing and creative services provider. At night I play music and sing songs for strangers.\",\"sameAs\":[\"http:\/\/annaditommaso.com\",\"https:\/\/www.facebook.com\/annaditommaso\",\"https:\/\/x.com\/annadito\"],\"url\":\"https:\/\/audiotheme.com\/blog\/author\/anna\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Customizing CSS in WordPress \u2014 AudioTheme","description":"Customizing CSS in WordPress allows you to make minor changes that can separate your site from others using the same theme.","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:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/","og_locale":"en_US","og_type":"article","og_title":"Customizing CSS in WordPress","og_description":"Customizing CSS in WordPress allows you to make minor changes that can separate your site from others using the same theme.","og_url":"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/","og_site_name":"AudioTheme","article_publisher":"https:\/\/www.facebook.com\/AudioTheme","article_author":"https:\/\/www.facebook.com\/annaditommaso","article_published_time":"2017-04-03T18:02:18+00:00","article_modified_time":"2022-11-25T20:15:35+00:00","og_image":[{"width":960,"height":480,"url":"https:\/\/audiotheme.com\/content\/uploads\/customizing-css-wordpress-sm.jpg","type":"image\/jpeg"}],"author":"Anna DiTommaso","twitter_card":"summary_large_image","twitter_creator":"@annadito","twitter_site":"@audiotheme","twitter_misc":{"Written by":"Anna DiTommaso","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/#article","isPartOf":{"@id":"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/"},"author":{"name":"Anna DiTommaso","@id":"https:\/\/audiotheme.com\/#\/schema\/person\/38868de0ea03bbbda70eac902aedc4a4"},"headline":"Customizing CSS in WordPress","datePublished":"2017-04-03T18:02:18+00:00","dateModified":"2022-11-25T20:15:35+00:00","mainEntityOfPage":{"@id":"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/"},"wordCount":1019,"publisher":{"@id":"https:\/\/audiotheme.com\/#organization"},"image":{"@id":"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/#primaryimage"},"thumbnailUrl":"https:\/\/audiotheme.com\/content\/uploads\/customizing-css-wordpress.jpg","articleSection":["General"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/","url":"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/","name":"Customizing CSS in WordPress \u2014 AudioTheme","isPartOf":{"@id":"https:\/\/audiotheme.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/#primaryimage"},"image":{"@id":"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/#primaryimage"},"thumbnailUrl":"https:\/\/audiotheme.com\/content\/uploads\/customizing-css-wordpress.jpg","datePublished":"2017-04-03T18:02:18+00:00","dateModified":"2022-11-25T20:15:35+00:00","description":"Customizing CSS in WordPress allows you to make minor changes that can separate your site from others using the same theme.","breadcrumb":{"@id":"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/#primaryimage","url":"https:\/\/audiotheme.com\/content\/uploads\/customizing-css-wordpress.jpg","contentUrl":"https:\/\/audiotheme.com\/content\/uploads\/customizing-css-wordpress.jpg","width":960,"height":480},{"@type":"BreadcrumbList","@id":"https:\/\/audiotheme.com\/blog\/customizing-css-wordpress\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/audiotheme.com\/"},{"@type":"ListItem","position":2,"name":"Customizing CSS in WordPress"}]},{"@type":"WebSite","@id":"https:\/\/audiotheme.com\/#website","url":"https:\/\/audiotheme.com\/","name":"AudioTheme","description":"Premium WordPress Music Themes","publisher":{"@id":"https:\/\/audiotheme.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/audiotheme.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/audiotheme.com\/#organization","name":"AudioTheme","url":"https:\/\/audiotheme.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/audiotheme.com\/#\/schema\/logo\/image\/","url":"https:\/\/audiotheme.com\/content\/uploads\/audiotheme-stacked.jpg","contentUrl":"https:\/\/audiotheme.com\/content\/uploads\/audiotheme-stacked.jpg","width":550,"height":550,"caption":"AudioTheme"},"image":{"@id":"https:\/\/audiotheme.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/AudioTheme","https:\/\/x.com\/audiotheme","https:\/\/instagram.com\/audiotheme\/","https:\/\/www.youtube.com\/channel\/UCzppZe6jnM1snoZC5pQF6Ow"]},{"@type":"Person","@id":"https:\/\/audiotheme.com\/#\/schema\/person\/38868de0ea03bbbda70eac902aedc4a4","name":"Anna DiTommaso","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/audiotheme.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/78704c542072937c7b2a9bcf5138890f58332084d40def3ed284619d3476b3d3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/78704c542072937c7b2a9bcf5138890f58332084d40def3ed284619d3476b3d3?s=96&d=mm&r=g","caption":"Anna DiTommaso"},"description":"During the days I'm a marketing and creative services provider. At night I play music and sing songs for strangers.","sameAs":["http:\/\/annaditommaso.com","https:\/\/www.facebook.com\/annaditommaso","https:\/\/x.com\/annadito"],"url":"https:\/\/audiotheme.com\/blog\/author\/anna\/"}]}},"_links":{"self":[{"href":"https:\/\/audiotheme.com\/api\/wp\/v2\/posts\/20592","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/audiotheme.com\/api\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/audiotheme.com\/api\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/audiotheme.com\/api\/wp\/v2\/users\/941"}],"replies":[{"embeddable":true,"href":"https:\/\/audiotheme.com\/api\/wp\/v2\/comments?post=20592"}],"version-history":[{"count":33,"href":"https:\/\/audiotheme.com\/api\/wp\/v2\/posts\/20592\/revisions"}],"predecessor-version":[{"id":20773,"href":"https:\/\/audiotheme.com\/api\/wp\/v2\/posts\/20592\/revisions\/20773"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/audiotheme.com\/api\/wp\/v2\/media\/20620"}],"wp:attachment":[{"href":"https:\/\/audiotheme.com\/api\/wp\/v2\/media?parent=20592"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/audiotheme.com\/api\/wp\/v2\/categories?post=20592"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/audiotheme.com\/api\/wp\/v2\/tags?post=20592"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}