Title: Nobita's Replies | WordPress.org

---

# Nobita

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Theme for formatting java code](https://wordpress.org/support/topic/theme-for-formatting-java-code/)
 *  [Nobita](https://wordpress.org/support/users/gleezer/)
 * (@gleezer)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/theme-for-formatting-java-code/#post-3013109)
 * Hi I’d suggest you use any theme you wish and rely solely on a good syntax highlighter
   plugin. There are many good ones in the plugin repo. Here’s a [list](http://wordpress.org/extend/plugins/search.php?q=syntax+highlighter).
 * In my own blog I use [Syntaxhighlighter Evolved](http://wordpress.org/extend/plugins/syntaxhighlighter/)
   by Alex Gorbatchev. It’s really good, has optional plain view, fast copy to clipboard
   and supports many languages including Java.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Weird table issue in TwentyEleven](https://wordpress.org/support/topic/weird-table-issue-in-twentyeleven/)
 *  [Nobita](https://wordpress.org/support/users/gleezer/)
 * (@gleezer)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/weird-table-issue-in-twentyeleven/#post-2559005)
 * The problem doesn’t rely on the display properties of span and div.
    Even if 
   they have “natural” properties (div is a block element, span is an inline element)
   you can easily override these settings through css as you like.
 * Quite surely it’s a layout problem, but as esmi stated above we should not rely
   on tables and try to solve the issue using best practices, i.e. css.
 * But vdot90 before addressing the problem I’m not sure of your intent as the original
   poster wanted to float an image and place text (a caption) on its side, while
   to me you seem to be trying to place the text underneath.
 * [Here’s](http://jsfiddle.net/gleezer/hrTz7/1/embedded/result/) a fiddle I fastly
   put up just to clarify what i mean.
 * ps- oh and it’s not dangerous to edit a style.css file as long as you’re safely
   using a child theme and back it up before making any change you feel uncertain
   about.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Minimatica] [Theme: Minimatica] How do I get rid of 'filed under uncategorised' on page?](https://wordpress.org/support/topic/theme-minimatica-how-do-i-get-rid-of-filed-under-uncategorised-on-page/)
 *  [Nobita](https://wordpress.org/support/users/gleezer/)
 * (@gleezer)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/theme-minimatica-how-do-i-get-rid-of-filed-under-uncategorised-on-page/#post-2997006)
 * If Sublime is too advanced then it doesn’t mean you have to give up!
    The web
   is full of of extremely good free software (and WordPress is one of them). Here’s
   a [list](http://sixrevisions.com/tools/12-excellent-free-text-editors-for-coders/)
   you might find useful.
 * Let’s suppose you’re running Windows you could give [Notepad++](http://notepad-plus-plus.org/)
   a try.
    Then you just need to follow a quick guide like this [one](http://cybernetnews.com/find-replace-multiple-files/),
   specific for the software you chose. if you take a look at that screenshot on
   the top of that tutorial things should be quite clear:
 * 1. in the ‘find what’ field tell the program to look for ‘filed under’
    2.in 
   the ‘directory’ field select your theme folder (should be called ‘Minimatica’).
 * Notepad will look into every php file where that text is to be found, open up
   those files and highlight the lines you need to edit.
    Delete (or comment) those
   lines, save every file you’ve edited and test your theme.
 * You won’t need any time consuming copy pasting and the operation should take 
   just a moment.
    Hope I’ve convinced you to keep trying.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [separate excerpt boxes with social media button](https://wordpress.org/support/topic/separate-excerpt-boxes-with-social-media-button/)
 *  [Nobita](https://wordpress.org/support/users/gleezer/)
 * (@gleezer)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/separate-excerpt-boxes-with-social-media-button/#post-2996963)
 * Have you found those lines of code in your style.css?
    Have you deleted them?
   Have you replaced them with the code I suggested?
 * If you do it then [here’s](http://awesomescreenshot.com/0c9e81ka6) what you get.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Putting absoute position widget over slideshow?](https://wordpress.org/support/topic/putting-absoute-position-widget-over-slideshow/)
 *  [Nobita](https://wordpress.org/support/users/gleezer/)
 * (@gleezer)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/putting-absoute-position-widget-over-slideshow/#post-2996956)
 * The widget does not not seem to cover the slideshow.
    I tested it adding these
   settings in the CSS:
 *     ```
       .textwidget { background: blue; }
   
       #meteor-slideshow {
       background: orange;
       z-index: 0; /* be careful, yours is -1 */
        }
       ```
   
 * I think your problem relies in that z-index you set to -1.
    Like so this div 
   disappears behind its parent div and everything else….
 * If you simply remove that z-index it should work.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [separate excerpt boxes with social media button](https://wordpress.org/support/topic/separate-excerpt-boxes-with-social-media-button/)
 *  [Nobita](https://wordpress.org/support/users/gleezer/)
 * (@gleezer)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/separate-excerpt-boxes-with-social-media-button/#post-2996933)
 * First things first.
    For the boxes you need to dive into your CSS stylesheets.
   In this case open your style.css file in a code editor a reach #post-content 
   around line 567. Remove some declarations such as background, padding and border.
   You’ll end up with this:
 *     ```
       #post-content {
       float: left;
       width: 630px;
       }
       ```
   
 * So that div will be transparent and will just become an ‘invisible container’
   of your posts, with the page background showing through.
 * Then around line 574 find .post and try entering something like:
 *     ```
       .post {
       margin-bottom: 20px;
       padding: 20px;
       border: 1px solid #EEE;
       background: #D3D3B9; /*edit this color as you wish */
       }
       ```
   
 * The result should be something like what you’re trying to achieve, and a good
   starting point for you to style your posts.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Minimatica] [Theme: Minimatica] How do I get rid of 'filed under uncategorised' on page?](https://wordpress.org/support/topic/theme-minimatica-how-do-i-get-rid-of-filed-under-uncategorised-on-page/)
 *  [Nobita](https://wordpress.org/support/users/gleezer/)
 * (@gleezer)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/theme-minimatica-how-do-i-get-rid-of-filed-under-uncategorised-on-page/#post-2996929)
 * Well it depends on the theme, maybe it’s in index.php or loop.php.
 * As I haven’t downloaded it I don’t know but still it’s pretty simple if you do
   have a decent code editor, which is strongly recommended in any case when dealing
   with code (much better than editing directly from WP editor).
 * When you have it fire up a “Find in Files” and there you have it. Let your computer
   do the dirty work 🙂
 * A quick [video](http://www.youtube.com/watch?v=hDqE0DBpJfo) just to get an idea.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Theme does not display on my site anymore](https://wordpress.org/support/topic/theme-does-not-display-on-my-site-anymore/)
 *  [Nobita](https://wordpress.org/support/users/gleezer/)
 * (@gleezer)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/theme-does-not-display-on-my-site-anymore/#post-2996923)
 * What do you mean by “installed Custom Page”? Is it a plugin or something else?
 * Whatever it is have you tried deleting what you’ve added?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Minimatica] [Theme: Minimatica] How do I get rid of 'filed under uncategorised' on page?](https://wordpress.org/support/topic/theme-minimatica-how-do-i-get-rid-of-filed-under-uncategorised-on-page/)
 *  [Nobita](https://wordpress.org/support/users/gleezer/)
 * (@gleezer)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/theme-minimatica-how-do-i-get-rid-of-filed-under-uncategorised-on-page/#post-2996922)
 * If you want to get rid only of the “uncategorized” category showing up read [this](http://wordpress.org/support/topic/removing-category-uncategorized?replies=13)
   thread.
 * If instead you need to chop the whole text you need to dive into your php files
   and delete that part.
    Fastest way is to open up your theme directory with a 
   code editor and look into its php files for ‘filed under’. When you’ve found 
   it simply remove that php string.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[BirdTIPS] [Theme: BirdTIPS] Custom Menu links disappear for mobile devices](https://wordpress.org/support/topic/theme-birdtips-custom-menu-links-disappear-for-mobile-devices/)
 *  [Nobita](https://wordpress.org/support/users/gleezer/)
 * (@gleezer)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/theme-birdtips-custom-menu-links-disappear-for-mobile-devices/#post-2995841)
 * Is your website online and linkable?
 * As you stated the demo page is not using any widget in the sidebar, so it’s difficult
   for us to help you out without a real demonstration of the problem.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to get rid of extra white space?](https://wordpress.org/support/topic/how-to-get-rid-of-extra-white-space/)
 *  [Nobita](https://wordpress.org/support/users/gleezer/)
 * (@gleezer)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/how-to-get-rid-of-extra-white-space/#post-2996899)
 * You need to take care of the widths of your divs.
 * For example I see you have a ‘wrapper’ which is 1040px while the div ‘menu-header’
   is 1340px. This causes the trouble in the first place.
 * As a rule of thumb the ‘wrapper’ gives you the max width of your content, and
   even if you can have something bleeding out of it at times, I would say that 
   the most important parts of your site should never exceed this space.
 * Try deleting the width property of the <div class=”menu-header”> and you will
   see no extra white space on the right and the content centered on the page as
   the menu will take 100% width of the wrapper.
 * When everything is contained inside the wrapper then you can style everything
   properly.

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