Skip to content
  • Recent
  • Tags
  • Popular
  • Users
  • Search
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse

Lay Theme Forum

  1. Home
  2. Addons
  3. magnetic slide addon- can I have a different background for each slide on the page?

magnetic slide addon- can I have a different background for each slide on the page?

Scheduled Pinned Locked Moved Addons
cssmagnetic slidecustom csschange backgrou
5 Posts 3 Posters 1.7k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Y Offline
    Y Offline
    ymaung
    wrote on last edited by
    #1

    Hi, I have the magnetic slide add-on. I want to have a different background for each slide on the page, how can I change the css for this?
    Thanks,
    Yin

    arminunruhA 1 Reply Last reply
    0
    • arminunruhA Offline
      arminunruhA Offline
      arminunruh
      Global Moderator
      wrote on last edited by arminunruh
      #2

      Hi Yin!
      First, you need to learn about some CSS selectors to target specific projects, pages and categories. Please take a look at my post here about how to change the background color of a whole page, project or category:
      http://laythemeforum.com:4567/topic/10/different-backgroundcolor-for-single-project/4

      Ok but we just want to change the background colors of the slides. To do that, you use the so called "nth-child" CSS selector: https://developer.mozilla.org/en-US/docs/Web/CSS/%3Anth-child

      We add all the CSS to the field "Custom CSS for Desktop Version" in "Lay Options" -> "Misc Options".

      We need to select .fp-section elements because these are the slides.
      Let's say the second slide's background should be pink. This slide is in a project with the id of "32".

      body[data-id="32"][data-type="project"] .fp-section:nth-child(2){
          background-color: pink;
      }
      

      If you want to make every second slide pink on your whole website you can use this:

      body[data-type="project"] .fp-section:nth-child(2){
          background-color: pink;
      }
      

      The following CSS makes every even slide pink and every odd slide green in the project with the id 32.

      body[data-id="32"][data-type="project"] .fp-section:nth-child(even){
          background-color: pink;
      }
      
      body[data-id="32"][data-type="project"] .fp-section:nth-child(odd){
          background-color: green;
      }
      

      Hope that helps!

      1 Reply Last reply
      0
      • Y ymaung

        Hi, I have the magnetic slide add-on. I want to have a different background for each slide on the page, how can I change the css for this?
        Thanks,
        Yin

        arminunruhA Offline
        arminunruhA Offline
        arminunruh
        Global Moderator
        wrote on last edited by
        #3

        @ymaung
        Now it's easier to set background colors for each row! Update your Lay Theme to version 1.030. Then right click on a row in the gridder. In the context menu you can choose "set background color". Cool huh?

        1 Reply Last reply
        0
        • irvdysI Offline
          irvdysI Offline
          irvdys
          wrote on last edited by irvdys
          #4

          @arminunruh it doesnt work on mobile device and tablet :(

          arminunruhA 1 Reply Last reply
          0
          • irvdysI irvdys

            @arminunruh it doesnt work on mobile device and tablet :(

            arminunruhA Offline
            arminunruhA Offline
            arminunruh
            Global Moderator
            wrote on last edited by
            #5

            @irvdys yeah gonna take at that look today :D

            1 Reply Last reply
            0
            Reply
            • Reply as topic
            Log in to reply
            • Oldest to Newest
            • Newest to Oldest
            • Most Votes


            I also code custom websites or custom Lay features.
            šŸ’æ Email me here: šŸ’æ
            info@laytheme.com

            Before you post:
            1. When using a WordPress Cache plugin, disable it or clear your cache.
            2. Update Lay Theme and all Lay Theme Addons
            3. Disable all Plugins
            4. Go to Lay Options → Custom CSS & HTML, click "Turn Off All Custom Code", click "Save Changes"

            This often solves issues you might run into

            When you post:
            1. Post a link to where the problem is
            2. Does the problem happen on Chrome, Firefox, Safari or iPhone or Android?
            3. If the problem is difficult to explain, post screenshots / link to a video to explain it
            Online Users
            Forgot your key, lost your files, need a previous Lay Theme or Addon version? Go to www.laykeymanager.com
            laytheme.com
            • Login

            • Don't have an account? Register

            • Login or register to search.
            • First post
              Last post
            0
            • Recent
            • Tags
            • Popular
            • Users
            • Search