ThomasTheTank
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Is developer.wordpress.org Up-to-Date?Excellent. Thank you
Forum: Developing with WordPress
In reply to: Is developer.wordpress.org Up-to-Date?Correction: developer.wordpress.org
Forum: Plugins
In reply to: [Easy Table of Contents] Prevent Float Right on MobileSent! Thanks!
Forum: Plugins
In reply to: [Easy Table of Contents] Prevent Float Right on MobileSomething like a media query at a specific width that expanded the main container to take the full width:
#ez-toc-container {
width: 100%
}Perhaps it could default at 450px, with an option to manually set it too.
As I mentioned, the issue really only shows when you are using the float:right option, since narrow TOCs will hug the right side, even on mobile.
Forum: Plugins
In reply to: [Easy Table of Contents] Prevent Float Right on MobileThanks for the quick response!
I have linked an example from mobile and desktop. Its not the most egregious example, but you can see on the mobile image how there is extra space on the left. It becomes more pronounced if the page headings are even shorter.
Desktop – https://imgur.com/a/tA2LkBo
Mobile – https://imgur.com/a/B6hpggnForum: Plugins
In reply to: [Redirection] Redirection Logs Not Auto-DeletingI have the same issue. I even set the options to “no logs” for both 404 and redirection, and I still have over 100 megs of logs in my database.
SOLVED
I had an errant
<form action="/url-culprit/" method="get" >with no closing
</form>further up on all pages. The solution would be to either remove it, or close it.So I have run some more tests, and it appears to work fine in Internet Explorer, but I get the forwarding to a different page in chrome and firefox.
Have to say its the first time IE worked right and Chrome/FF were the ones acting up. 🙂