lanee1014
Forum Replies Created
-
Forum: Plugins
In reply to: [DM Albums] Fullscreen displays behind footer & menuI also tried turning the full screen option on and off, didn’t help either.
cinderalla could you expound upon this a bit more? The code snippet you offer…where is that from? The plugin code?
What did you change/modify?
Thank you so much Bill! I got it working. Now…can I have it display the entire post instead of just a link to the post?
Also, how can I exclude the Behind the Scenes category from the main Blog page of posts?
Thank you again, so so much for your help.
Allen,
Pretty simple. Just use your ftp client and create a folder called events under the wp-content/themes/*YOUR THEME NAME*/ directory. Then you copy the /resources/events.css file into that new folder. That’s it! 🙂
Let me know if you need more help on that.
-ChasSo if you are reading this trying to figure out this same problem, I finally found the answer.
You must look for the style designation of tribe-events-event-list-meta table in the /resources/events.css file.
I simply removed the line for the background color.
This is the original code:
.tribe-events-events .tribe-events-event-list-meta { float:right; border-left:1px solid #ccc; padding:0 0 0 4%; width:30%; font-size:12px; margin-bottom:20px; } .tribe-events-event-list-meta table {border-collapse:collapse; border: 0 !important;} .tribe-events-event-list-meta tr { border: 0 !important; } .tribe-events-event-list-meta td { vertical-align:top; padding: 0 0 4px 0 !important; text-align:left; border: 0 !important; background-color: white; }I just removed that last line of code so that it now looks like this:
.tribe-events-events .tribe-events-event-list-meta { float:right; border-left:1px solid #ccc; padding:0 0 0 4%; width:30%; font-size:12px; margin-bottom:20px; } .tribe-events-event-list-meta table {border-collapse:collapse; border: 0 !important;} .tribe-events-event-list-meta tr { border: 0 !important; } .tribe-events-event-list-meta td { vertical-align:top; padding: 0 0 4px 0 !important; text-align:left; border: 0 !important; }Remember to copy this file into a /events folder that you create under your wp-content/themes/*YOUR THEME NAME*/ directory so that the next time you upgrade you won’t lose your edits. 🙂