I created a folder for changes I made on a specific page. I duplicated that page and made some minor changes. Now, I’m trying to apply the CSS to the second page. I’ve added the condition, but nothing is happening. When I click the selector on the second page, it’s using the names from the folder, but I don’t know why I can’t see any changes. Here is the condition:
\Microthemer\is_post_or_page(3079, “Add Listing”)
and \Microthemer\is_post_or_page(8818, “Add Event”)
I’m so sorry for the delay in responding. I just spotted a forum topic with only one voice – yours!
This may come far too late, but I think the mistake is that you need to use “or” instead of “and”:
\Microthemer\is_post_or_page(3079, “Add Listing”)
or \Microthemer\is_post_or_page(8818, “Add Event”)
The folder loads is all conditions are true. Because the page will either have an id of 3079 or 8818 only one condition will return true. The other will always be false, so the overall condition using an “and” will be false.