All Tab Header
Right-Tab code responsive for all container
grid code responsive for all container
Dynamic Grid Generator (LS Compatible)
Tab code responsive for all container
accordion code responsive for all container
Responsive code to play video continuously (needs to add https://webaddress to work outside lime survey training)
Responsive 2 text blocks code
Responsive 2 text Gradient background blocks code
Responsive image dashboard code

General body colouring
Dashboard text code
Your Active Email Address
Specifically for Lime Survey Randomly generated Access Code divisible by 997755
Randomly generated Access Code divisible by 997755 code will only display one per page, but this above works perfectly
Slide 1
This is the content of slide 1.
Slide 2
This is the content of slide 2.
Slide 3
This is the content of slide 3.
Slide 4
This is the content of slide 4.
Colour Theme:
Dark Green: #013717 or rgb(1, 55, 23)
Dark Orange: #9F4400 or rgb(159, 68, 0)
Golden colour: #FFD700
light Blue: #99ffff
Plain Text Block
Information
This is a text block providing important information to the respondent.
3D Single heading
Welcome to the 3D Text Block!
This is a 3D-styled text block. Customize the text, colors, and effects as needed.
3d 2-column test board "RESPONSIVE VERSION"
Block 1
This is the first 3D text block.
Block 2
This is the second 3D text block.
Explanation of Changes:
Class Names:
- I added class names
.flex-containerand.text-blockto help identify the container and individual blocks. This makes it easier to apply specific styles via CSS.
- I added class names
Flexbox Layout:
- The
flex-wrap: wrap;ensures that the flex items (blocks) will wrap if there is not enough space. - The
flex: 1 1 45%;is applied to each text block to make each block take 45% of the available width when viewed on larger screens (desktop/tablet).
- The
Media Query for Small Screens (Mobile/Tablet):
- The media query
@media (max-width: 768px)targets screens that are 768px wide or smaller (typically mobile and tablet devices). - Inside the media query,
flex-direction: column;ensures that the text blocks stack vertically. - The
.text-blockelements are givenwidth: 100%to make them take up the full width of the container, ensuring they appear in a single column.
- The media query
Spacing:
margin-bottom: 20px;ensures there is space between the blocks when they are stacked vertically.
What Should Happen:
- Desktop and Tablet (larger than 768px width): The two blocks should appear side by side (in two columns).
- Mobile and Tablet (768px or smaller width): The blocks will stack vertically (in a single column).
This should now work as expected, showing one column on mobile and tablet devices, and two columns on larger devices. If you have further issues, feel free to reach out!
3d 2-column test board
Explanation of the Code
Flexbox Layout:
- The
display: flex;property creates a flexible container for the two blocks. justify-content: space-between;ensures the blocks are evenly spaced.gap: 20px;adds space between the blocks.
- The
3D Effect:
- The
perspectiveproperty creates the 3D depth. - The
transform: rotateX()androtateY()properties tilt the blocks in 3D space.
- The
Styling for Each Block:
- Each block has a gradient background and a shadow for the 3D effect.
- Different colors are applied to each block using
linear-gradient.
Responsive Design:
- The
flex: 1;ensures the blocks share equal space. - The layout adapts naturally to the container’s width.
- The
Preview of Result
- On larger screens, the two blocks will be side by side.
- On smaller screens, the blocks will shrink proportionally, remaining in the same row.
Optional Enhancements
- Add Media Queries: To stack the blocks vertically on smaller screens.
@media (max-width: 768px) {
div[style*="display: flex;"] {
flex-direction: column;
}
}
- Hover Effects: Add a hover effect for interactivity:
:hover {
transform: rotateX(0deg) rotateY(0deg);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}
This approach ensures you have a visually stunning and responsive 3D layout with two blocks in the same row.
Refresh your email inbox for new emails
Check your inbox and spam folders for Verification Access Code…
Use the button below to continue your registration!
Responsive code to play video continuously (needs to add https://webaddress to work outside lime survey training)
Responsive 2 text blocks code
Responsive image dashboard code

General body colouring
Dashboard text code
Your Active Email Address
question text here
Specifically for Lime Survey Randomly generated Access Code divisible by 997755
Randomly generated Access Code divisible by 997755 code will only display one per page, but this above works perfectly
Slide 1
This is the content of slide 1.
Slide 2
This is the content of slide 2.
Slide 3
This is the content of slide 3.
Slide 4
This is the content of slide 4.
Colour Theme:
Dark Green: #013717 or rgb(1, 55, 23)
Dark Orange: #9F4400 or rgb(159, 68, 0)
Golden colour: #FFD700
Plain Text Block
Information
This is a text block providing important information to the respondent.
3D Single heading
Welcome to the 3D Text Block!
This is a 3D-styled text block. Customize the text, colors, and effects as needed.
3d 2-column test board "RESPONSIVE VERSION"
Block 1
This is the first 3D text block.
Block 2
This is the second 3D text block.
Explanation of Changes:
Class Names:
- I added class names
.flex-containerand.text-blockto help identify the container and individual blocks. This makes it easier to apply specific styles via CSS.
- I added class names
Flexbox Layout:
- The
flex-wrap: wrap;ensures that the flex items (blocks) will wrap if there is not enough space. - The
flex: 1 1 45%;is applied to each text block to make each block take 45% of the available width when viewed on larger screens (desktop/tablet).
- The
Media Query for Small Screens (Mobile/Tablet):
- The media query
@media (max-width: 768px)targets screens that are 768px wide or smaller (typically mobile and tablet devices). - Inside the media query,
flex-direction: column;ensures that the text blocks stack vertically. - The
.text-blockelements are givenwidth: 100%to make them take up the full width of the container, ensuring they appear in a single column.
- The media query
Spacing:
margin-bottom: 20px;ensures there is space between the blocks when they are stacked vertically.
What Should Happen:
- Desktop and Tablet (larger than 768px width): The two blocks should appear side by side (in two columns).
- Mobile and Tablet (768px or smaller width): The blocks will stack vertically (in a single column).
This should now work as expected, showing one column on mobile and tablet devices, and two columns on larger devices. If you have further issues, feel free to reach out!
3d 2-column test board
Explanation of the Code
Flexbox Layout:
- The
display: flex;property creates a flexible container for the two blocks. justify-content: space-between;ensures the blocks are evenly spaced.gap: 20px;adds space between the blocks.
- The
3D Effect:
- The
perspectiveproperty creates the 3D depth. - The
transform: rotateX()androtateY()properties tilt the blocks in 3D space.
- The
Styling for Each Block:
- Each block has a gradient background and a shadow for the 3D effect.
- Different colors are applied to each block using
linear-gradient.
Responsive Design:
- The
flex: 1;ensures the blocks share equal space. - The layout adapts naturally to the container’s width.
- The
Preview of Result
- On larger screens, the two blocks will be side by side.
- On smaller screens, the blocks will shrink proportionally, remaining in the same row.
Optional Enhancements
- Add Media Queries: To stack the blocks vertically on smaller screens.
@media (max-width: 768px) {
div[style*="display: flex;"] {
flex-direction: column;
}
}
- Hover Effects: Add a hover effect for interactivity:
:hover {
transform: rotateX(0deg) rotateY(0deg);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}
This approach ensures you have a visually stunning and responsive 3D layout with two blocks in the same row.
Refresh your email inbox for new emails
Check your inbox and spam folders for Verification Access Code…
Use the button below to continue your registration!