Title: Dewed's Replies | WordPress.org

---

# Dewed

  [  ](https://wordpress.org/support/users/dewed/)

 *   [Profile](https://wordpress.org/support/users/dewed/)
 *   [Topics Started](https://wordpress.org/support/users/dewed/topics/)
 *   [Replies Created](https://wordpress.org/support/users/dewed/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/dewed/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/dewed/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/dewed/engagements/)
 *   [Favorites](https://wordpress.org/support/users/dewed/favorites/)

 Search replies:

## Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Tiny Forge] hide normal menu when mobile menu is shown](https://wordpress.org/support/topic/hide-normal-menu-when-mobile-menu-is-shown/)
 *  Thread Starter [Dewed](https://wordpress.org/support/users/dewed/)
 * (@dewed)
 * [12 years ago](https://wordpress.org/support/topic/hide-normal-menu-when-mobile-menu-is-shown/#post-4875554)
 * Bingo!
    Commenting out this chunk of my style.css now gives the desired effect
 * .main-navigation ul.nav-menu, .main-navigation div.nav-menu > ul {
    border: none;
   border-bottom:solid medium #606060; /* display: inline-block !important; text-
   align: left; width: 100%; */ }
 * I’m not using media queries, mainly because I’m oldschool and don’t own anything
   but a desktop system, but I’m guessing the display: line was the culprit since
   I’m not using media queries, so it would take effect regardless of screen width…
   So educational !
 * Once the site is made public I’ll be sure to come back and tell you all about
   it. I’ve bent a lot of WordPress themes, but this is my first with Tiny Forge.
   It’s very powerful and extensive, but possibly it’s top selling point is the 
   fact you answered my question within an hour in English that even a caveman like
   me can comprehend.
 * You Sir truly rock! \o/
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Need some CSS help with Responsive child theme](https://wordpress.org/support/topic/need-some-css-help-with-responsive-child-theme/)
 *  Thread Starter [Dewed](https://wordpress.org/support/users/dewed/)
 * (@dewed)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/need-some-css-help-with-responsive-child-theme/#post-4796859)
 * Thanks for the response. Unfortunately right now the WP site I’m working on is
   locked up, but, the site and look I’m trying to reproduce with WP and the Responsive
   theme is [http://steppingstonedental.com](http://steppingstonedental.com)
 * I’ll have to advise some folks before I make the location of my development area
   publicly accessible.. It’s basically a pro-bono gig, which I was confident I 
   could do, and I can, except for this one little thing :/
 *   Forum: [Requests and Feedback](https://wordpress.org/support/forum/requests-and-feedback/)
   
   In reply to: [media discovery](https://wordpress.org/support/topic/media-discovery/)
 *  Thread Starter [Dewed](https://wordpress.org/support/users/dewed/)
 * (@dewed)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/media-discovery/#post-2658644)
 * huh ? Perhaps I’m misreading you or you are misreading me.
 * My post is a feature request.. not a request for an explanation of how the media
   uploader currently works. I understand it creates thumbs, and mid sized images
   from the ones you upload with it. I’m not talking about that.. uh at all.
 * What I’m talking about is a more time efficient way to add hundreds of UNIQUE
   FULL SIZE images via FTP.
 * After I upload a bunch of images (WITH FTP not the media uploader), From WP admin,
   I click “Discover media” A fairly simple PHP function could scan the preset directories,
   check the DB for an entry for each file, if there is no entry for that file, 
   that means a new image has been discovered so show the image and a form to fill
   in the details, and an option to delete the image. If the details supplied are
   valid do the database entry and generate the thumbs and mid size image, then 
   scan again for more new images, continuing the process until there are no “unknown”
   images left to find.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [posts with comments push right sidebar to bottom](https://wordpress.org/support/topic/posts-with-comments-push-right-sidebar-to-bottom/)
 *  Thread Starter [Dewed](https://wordpress.org/support/users/dewed/)
 * (@dewed)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/posts-with-comments-push-right-sidebar-to-bottom/#post-2010921)
 * BINGO ! In an act of utter desperation I started disabling plugins, refreshing,
   if the problem still exists, re-enable it and disable the next..
 * After I disabled “Simple Bookmarking” posts with comments no longer caused the
   right side bar to be pushed down… maybe it needs an extra closing div tag or 
   something, not sure.. but I am grateful I don’t have to wipe it and start over\
   o/ YAY !
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [Difficulties setting up database in phpMyAdmin](https://wordpress.org/support/topic/difficulties-setting-up-database-in-phpmyadmin/)
 *  [Dewed](https://wordpress.org/support/users/dewed/)
 * (@dewed)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/difficulties-setting-up-database-in-phpmyadmin/#post-1525250)
 * Sounds like the wordpress docs assume you have root access, where you could alter
   mysql privileges through phpmyadmin, and you simply don’t have those privileges,
   so phpmyadmin does not show them.
 * If you used your hosts control panel to create a database then the user/password
   is usually supplied as part of the setup, and that user should already have access
   to the new database.
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [index.html and index.php not co-habitating](https://wordpress.org/support/topic/indexhtml-and-indexphp-not-co-habitating/)
 *  Thread Starter [Dewed](https://wordpress.org/support/users/dewed/)
 * (@dewed)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/indexhtml-and-indexphp-not-co-habitating/#post-1525731)
 * hrm. I can control which to serve by default in the .htaccess with the DirectoryIndex
   directive The point is, I should not have to make an either or choice, serve 
   index.html if no file is requested, otherwise serve the requested file, in this
   case index.php
 * Thanks anyways
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [Making site inactive while I populate it?](https://wordpress.org/support/topic/making-site-inactive-while-i-populate-it/)
 *  [Dewed](https://wordpress.org/support/users/dewed/)
 * (@dewed)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/making-site-inactive-while-i-populate-it/#post-1525723)
 * I’m a caveman so I hit it with a club, try adding something like this to the 
   top of your index file..
 * if ($_SERVER[‘REMOTE_ADDR’]) !=’127.0.0.1′){
    exit(); }
 * putting your own IP in of course
 *   Forum: [Your WordPress](https://wordpress.org/support/forum/your-wordpress/)
   
   In reply to: [New interior designer website](https://wordpress.org/support/topic/new-interior-designer-website/)
 *  Thread Starter [Dewed](https://wordpress.org/support/users/dewed/)
 * (@dewed)
 * [16 years, 8 months ago](https://wordpress.org/support/topic/new-interior-designer-website/#post-1191486)
 * QUIT SPAMMING ON OTHER PEOPLE’S THREAD !!!
 * [he’s not crazy – I removed the post and the poster has been warned to not do
   this – samboll]
 *   Forum: [Your WordPress](https://wordpress.org/support/forum/your-wordpress/)
   
   In reply to: [IdeaButter.com needs your feedback!](https://wordpress.org/support/topic/ideabuttercom-needs-your-feedback/)
 *  [Dewed](https://wordpress.org/support/users/dewed/)
 * (@dewed)
 * [16 years, 8 months ago](https://wordpress.org/support/topic/ideabuttercom-needs-your-feedback/#post-1178130)
 * everyone hates spam, myself included

Viewing 9 replies - 1 through 9 (of 9 total)