Hey Jesse,
This plugin (may) be what I’ve been looking for. Let me tell you what i”m trying to do and you tell me if it’s a fit for the coding issue I’m trying to solve.
I’m creating a sticky footer to display at the bottom of the viewport. The code I have is in divs and is meant to go into a footer file. I’m using a child theme, so no worries.
On a desktop, I want a horizontal bar with a gradient background with text and images aligned like this in landscape mode and responsive:
text text text
image image image image image
on mobile portrait I need the text and images to look like this:
text text text
image image image
image image
Then on mobile landscape, I want to use the landscape example above. My approach this far, has been to call different css for landscape or portrait by style sheet statements like this:
<link rel="stylesheet" media="(orientation: portrait)" href="portrait.css">
<link rel="stylesheet" media="(orientation: landscape)" href="landscape.css">
Can your plugin give me what I need? Right now I have a series of divs doing this in html that I’ve been testing, but haven’t popped it into WordPress yet.