Responsive Layout

Use this board to ask questions or have discussions with other Rich Displays users.
Post Reply
pjshuey
Experienced User
Posts: 119
Joined: Wed May 25, 2016 11:58 am
First Name: Patti
Last Name: Shuey
Company Name: Conestoga Wood Specialties
Phone: 7174452886
Address 1: 645 Reading Road
City: East Earl
State / Province: Pennsylvania
Zip / Postal Code: 17519
Country: United States
Contact:

Responsive Layout

Post by pjshuey »

Is there a way to change the background color on individual sections of the responsive layout?
mwalter
Experienced User
Posts: 140
Joined: Wed Sep 14, 2016 2:58 pm
First Name: Mark
Last Name: Walter
Company Name: Paragon Consulting Services
Contact:

Re: Responsive Layout

Post by mwalter »

Can you put a standard layout in the section. Set the height and length to 100%. Then set the background of that.

We haven't upgraded to 6 yet, so I can't try this. But, that's how I'd do it in HTML5. I'd place a DIV inside my col.... div, and set the background of that.
pjshuey
Experienced User
Posts: 119
Joined: Wed May 25, 2016 11:58 am
First Name: Patti
Last Name: Shuey
Company Name: Conestoga Wood Specialties
Phone: 7174452886
Address 1: 645 Reading Road
City: East Earl
State / Province: Pennsylvania
Zip / Postal Code: 17519
Country: United States
Contact:

Re: Responsive Layout

Post by pjshuey »

I was hoping there is a way to do it using the new responsive layout widget without having to add a layout on top of it to get different colors in different sections.
User avatar
Megan
Profound Logic Staff Member
Posts: 90
Joined: Mon Sep 11, 2017 12:15 pm
First Name: Megan
Last Name: Bond
Company Name: Profound Logic
Phone: 5623227473
State / Province: California
Zip / Postal Code: 92692
Country: United States
Contact:

Re: Responsive Layout

Post by Megan »

Hello Patti,

This is certainly possible with the responsive layouts! To do this, you'll want to add rules to the 'style rules' property that will color the background of the containers. See the steps below.

Right click the 'style rules' property and click 'Open in Editor...'
openInEditor.png
openInEditor.png (12.28 KiB) Viewed 665 times
Example rules to add:
editSylesRules.png
editSylesRules.png (11.59 KiB) Viewed 665 times

Code: Select all

@media screen {
  #_id_>.puiresp {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 3px;
    grid-row-gap: 3px;
  }
  #_id_>.puiresp>div:first-child {
    background: red;
  }
  #_id_>.puiresp>div:nth-child(2) {
    background: orange;
  }
  #_id_>.puiresp>div:nth-child(3) {
    background: yellow;
  }
  #_id_>.puiresp>div:nth-child(4) {
    background: green;
  }
  #_id_>.puiresp>div:nth-child(5) {
    background: blue;
  }
  #_id_>.puiresp {
    background: purple;
  }
}
Result:
rainbowRespLayout.png
rainbowRespLayout.png (26.48 KiB) Viewed 665 times
To see the structure and order of responsive layout, you can use the developer tools of your browser. In Chrome, the tools can be opened with Ctrl + Shift + I. Ctrl + Shift + C can be used to highlight and select the element you want to view in the developers tools.

Using Ctrl + Shift + C to highlight element:
ctrlShiftC.png
ctrlShiftC.png (32.16 KiB) Viewed 665 times
Responsive Layout in Developers Tools:
respLayoutInDT.png
respLayoutInDT.png (55.97 KiB) Viewed 665 times
div:first-child, the red container:
firstChild-RedContainer.png
firstChild-RedContainer.png (56.14 KiB) Viewed 665 times
Additional information on CSS Selectors: https://www.w3schools.com/cssref/css_selectors.asp

We hope this helps! If you have any questions or concerns, please let us know and we'll be happy to help!

Thanks,
~MEGAN BOND
Technical Support Specialist
support@profoundlogic.com
pjshuey
Experienced User
Posts: 119
Joined: Wed May 25, 2016 11:58 am
First Name: Patti
Last Name: Shuey
Company Name: Conestoga Wood Specialties
Phone: 7174452886
Address 1: 645 Reading Road
City: East Earl
State / Province: Pennsylvania
Zip / Postal Code: 17519
Country: United States
Contact:

Re: Responsive Layout

Post by pjshuey »

Thanks Megan! This is exactly what I needed!
Post Reply

Who is online

Users browsing this forum: No registered users and 0 guests