{"id":3539,"date":"2019-01-30T22:08:00","date_gmt":"2019-01-30T16:38:00","guid":{"rendered":"https:\/\/blog.pheonixsolutions.com\/?p=3539"},"modified":"2019-01-31T13:58:14","modified_gmt":"2019-01-31T08:28:14","slug":"how-to-slide-logo-using-slick-slider","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/how-to-slide-logo-using-slick-slider\/","title":{"rendered":"HOW TO &#8211; Slide logo using slick slider"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\">HOW TO &#8211; Slide logo using slick slider <\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">Date posted : 30\/01\/2019<\/h4>\n\n\n\n<h4 class=\"wp-block-heading\">Introduction<\/h4>\n\n\n\n<p>Add a responsive logo slideshow carousel to your site quickly and easily. Embed in any post\/page using short code or in your theme.<\/p>\n\n\n\n<p>Perfect for displaying a list of sponsor or client logos.<\/p>\n\n\n\n<p><strong>Example :<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"204\" src=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-30-at-9.45.45-PM-1024x204.png\" alt=\"\" class=\"wp-image-3540\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-30-at-9.45.45-PM-1024x204.png 1024w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-30-at-9.45.45-PM-300x60.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-30-at-9.45.45-PM-768x153.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-30-at-9.45.45-PM.png 1598w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><figcaption>It will automatically slides left to right based on the Jquery.<br><\/figcaption><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">Source code for HTML , CSS AND JQUERY:<\/h4>\n\n\n\n<h5 class=\"wp-block-heading\">1. HTML: <\/h5>\n\n\n\n<p>Here i have attached a placeholder image reference. Please make changes in the according to your clients, partners, Images, based on your reference.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">&lt;!-- Check settings for slicks JS &amp; CSS  --&gt;\n<div class=\"slider\">\n\t<div class=\"slide\" style=\"background-image:url('https:\/\/via.placeholder.com\/300\/09f.png\/fffC\/O https:\/\/placeholder.com\/')\">\n\t\t<div class=\"container\">\t\n\t\t\t<div>your content1<\/div>\n\t\t&lt;\/div&gt;\n\t&lt;\/div&gt;\n\t<div class=\"slide\" style=\"background-image:url('https:\/\/via.placeholder.com\/300\/09f.png\/fffC\/O https:\/\/placeholder.com\/')\">\n\t\t<div class=\"container\">\t\n\t\t\t<div>your content2<\/div>\n\t\t&lt;\/div&gt;\n\t&lt;\/div&gt;\n\t\t<div class=\"slide\" style=\"background-image:url('https:\/\/via.placeholder.com\/300\/09f.png\/fffC\/O https:\/\/placeholder.com\/')\">\n\t\t<div class=\"container\">\t\n\t\t\t<div>your content3<\/div>\n\t\t&lt;\/div&gt;\n\t&lt;\/div&gt;\n\t\t<div class=\"slide\" style=\"background-image:url('https:\/\/via.placeholder.com\/300\/09f.png\/fffC\/O https:\/\/placeholder.com\/')\">\n\t\t<div class=\"container\">\t\n\t\t\t<div>your content2<\/div>\n\t\t&lt;\/div&gt;\n\t&lt;\/div&gt;\n\t\t<div class=\"slide\" style=\"background-image:url('https:\/\/via.placeholder.com\/300\/09f.png\/fffC\/O https:\/\/placeholder.com\/')\">\n\t\t<div class=\"container\">\t\n\t\t\t<div>your content4<\/div>\n\t\t&lt;\/div&gt;\n\t&lt;\/div&gt;\n&lt;\/div&gt;\n<\/pre>\n\n\n\n<p><strong>2 . CSS:<\/strong><\/p>\n\n\n\n<p>Place your height pixels, based on your requirement.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>.slide {\n     height:40px;\n }<\/code><\/pre>\n\n\n\n<p><strong>3 . Jquery:<\/strong><\/p>\n\n\n\n<p>The Jquery, which makes our site more attractive by sliding  from left to right.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$('.slider').slick({\n\tinfinite: true,\n\tslidesToShow: 3,\n\tslidesToScroll: 1,\n\tarrows: true,\n\tautoplay: true,\n\tautoplaySpeed: 2000,\n\tresponsive: [\n\t\t{\n\t\t\tbreakpoint: 1200,\n\t\t\tsettings: {\n\t\t\t\tslidesToShow: 2,\n\t\t\t\tslidesToScroll: 1\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\tbreakpoint: 1008,\n\t\t\tsettings: {\n\t\t\t\tslidesToShow: 1,\n\t\t\t\tslidesToScroll: 1\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\tbreakpoint: 800,\n\t\t\tsettings: {\n\t\t\t\tslidesToShow: 1,\n\t\t\t\tslidesToScroll: 1\n\t\t\t}\n\t\t\t\/\/ settings: \"unslick\"\n\t\t}\n\n\t]\n});<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Solution and output:<\/h4>\n\n\n\n<p>By  using this HTML,CSS AND JQUERY combination, you will easily slides a content .<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"351\" src=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-30-at-10.08.16-PM-1024x351.png\" alt=\"\" class=\"wp-image-3541\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-30-at-10.08.16-PM-1024x351.png 1024w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-30-at-10.08.16-PM-300x103.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-30-at-10.08.16-PM-768x263.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-30-at-10.08.16-PM.png 1540w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><figcaption>Example 1<br><\/figcaption><\/figure>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"232\" src=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-30-at-10.08.03-PM-1024x232.png\" alt=\"\" class=\"wp-image-3542\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-30-at-10.08.03-PM-1024x232.png 1024w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-30-at-10.08.03-PM-300x68.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-30-at-10.08.03-PM-768x174.png 768w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><figcaption>Example 2<\/figcaption><\/figure>\n\n\n\n<p>Thank you! for using <strong>PHEONIX SOLUTIONS.<\/strong><\/p>\n\n\n\n<p><strong>VISIT US :<\/strong><\/p>\n\n\n\n<p>OFFICIAL SITE &#8211; <a href=\"https:\/\/pheonixsolutions.com\/\">https:\/\/pheonixsolutions.com\/<\/a><\/p>\n\n\n\n<p>BLOG  SITE &#8211; <a href=\"https:\/\/blog.pheonixsolutions.com\/\">https:\/\/blog.pheonixsolutions.com\/<\/a><\/p>\n\n\n\n<p>You find this tutorial helpful? Share with your friends to keep it alive.Be the first to comment, we value your suggestions. For further queries please comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>HOW TO &#8211; Slide logo using slick slider Date posted : 30\/01\/2019 Introduction Add a responsive logo slideshow carousel to your site quickly and easily. Embed in any post\/page using short code or in your theme. Perfect for displaying a list of sponsor or client logos. Example : Source code&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-slide-logo-using-slick-slider\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">HOW TO &#8211; Slide logo using slick slider<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[513,484],"tags":[548,549,547],"class_list":{"0":"post-3539","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-bootstrap","7":"category-html-css","8":"tag-bs4-sick-slider","9":"tag-logo-slider","10":"tag-slick-slider","11":"h-entry","13":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/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:\/\/pheonixsolutions.com\/blog\/how-to-slide-logo-using-slick-slider\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"HOW TO &#8211; Slide logo using slick slider Date posted : 30\/01\/2019 Introduction Add a responsive logo slideshow carousel to your site quickly and easily. Embed in any post\/page using short code or in your theme. Perfect for displaying a list of sponsor or client logos. Example : Source code&hellip; Continue Reading HOW TO &#8211; Slide logo using slick slider\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/how-to-slide-logo-using-slick-slider\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2019-01-30T16:38:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-01-31T08:28:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-30-at-9.45.45-PM-1024x204.png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-slide-logo-using-slick-slider\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-slide-logo-using-slick-slider\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"HOW TO &#8211; Slide logo using slick slider\",\"datePublished\":\"2019-01-30T16:38:00+00:00\",\"dateModified\":\"2019-01-31T08:28:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-slide-logo-using-slick-slider\\\/\"},\"wordCount\":188,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-slide-logo-using-slick-slider\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2019\\\/01\\\/Screen-Shot-2019-01-30-at-9.45.45-PM-1024x204.png\",\"keywords\":[\"Bs4 sick slider\",\"logo slider\",\"slick slider\"],\"articleSection\":[\"Bootstrap\",\"HTML CSS\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-slide-logo-using-slick-slider\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-slide-logo-using-slick-slider\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-slide-logo-using-slick-slider\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-slide-logo-using-slick-slider\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-slide-logo-using-slick-slider\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2019\\\/01\\\/Screen-Shot-2019-01-30-at-9.45.45-PM-1024x204.png\",\"datePublished\":\"2019-01-30T16:38:00+00:00\",\"dateModified\":\"2019-01-31T08:28:14+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-slide-logo-using-slick-slider\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-slide-logo-using-slick-slider\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-slide-logo-using-slick-slider\\\/#primaryimage\",\"url\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2019\\\/01\\\/Screen-Shot-2019-01-30-at-9.45.45-PM-1024x204.png\",\"contentUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2019\\\/01\\\/Screen-Shot-2019-01-30-at-9.45.45-PM-1024x204.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-slide-logo-using-slick-slider\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"HOW TO &#8211; Slide logo using slick slider\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/blog.pheonixsolutions.com\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","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:\/\/pheonixsolutions.com\/blog\/how-to-slide-logo-using-slick-slider\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"HOW TO &#8211; Slide logo using slick slider Date posted : 30\/01\/2019 Introduction Add a responsive logo slideshow carousel to your site quickly and easily. Embed in any post\/page using short code or in your theme. Perfect for displaying a list of sponsor or client logos. Example : Source code&hellip; Continue Reading HOW TO &#8211; Slide logo using slick slider","og_url":"https:\/\/pheonixsolutions.com\/blog\/how-to-slide-logo-using-slick-slider\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2019-01-30T16:38:00+00:00","article_modified_time":"2019-01-31T08:28:14+00:00","og_image":[{"url":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-30-at-9.45.45-PM-1024x204.png","type":"","width":"","height":""}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-slide-logo-using-slick-slider\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-slide-logo-using-slick-slider\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"HOW TO &#8211; Slide logo using slick slider","datePublished":"2019-01-30T16:38:00+00:00","dateModified":"2019-01-31T08:28:14+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-slide-logo-using-slick-slider\/"},"wordCount":188,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-slide-logo-using-slick-slider\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-30-at-9.45.45-PM-1024x204.png","keywords":["Bs4 sick slider","logo slider","slick slider"],"articleSection":["Bootstrap","HTML CSS"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-slide-logo-using-slick-slider\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-slide-logo-using-slick-slider\/","url":"https:\/\/pheonixsolutions.com\/blog\/how-to-slide-logo-using-slick-slider\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-slide-logo-using-slick-slider\/#primaryimage"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-slide-logo-using-slick-slider\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-30-at-9.45.45-PM-1024x204.png","datePublished":"2019-01-30T16:38:00+00:00","dateModified":"2019-01-31T08:28:14+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-slide-logo-using-slick-slider\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-slide-logo-using-slick-slider\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-slide-logo-using-slick-slider\/#primaryimage","url":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-30-at-9.45.45-PM-1024x204.png","contentUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-30-at-9.45.45-PM-1024x204.png"},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-slide-logo-using-slick-slider\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"HOW TO &#8211; Slide logo using slick slider"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","caption":"admin"},"sameAs":["http:\/\/blog.pheonixsolutions.com"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-V5","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/3539","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=3539"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/3539\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=3539"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=3539"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=3539"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}