Title: Gilbert's Replies | WordPress.org

---

# Gilbert

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Magazine Basic] Right menu bar floating under posts area on last page.](https://wordpress.org/support/topic/right-menu-bar-floating-under-posts-area-on-last-page/)
 *  [Gilbert](https://wordpress.org/support/users/gilbert69/)
 * (@gilbert69)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/right-menu-bar-floating-under-posts-area-on-last-page/#post-4224572)
 * OK, I saw it!
    Indeed, if you have less than four posts on the last page the 
   sidebar (#secondary) is going inside the main content (#primary). But if you 
   have four posts or more, everything works normal.
 * It’s look like a closing tag is missing somewhere there. I think is about the.
   three-col-wrapper.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Magazine Basic] Left Sidebar Displayed under Content on Second Page](https://wordpress.org/support/topic/left-sidebar-displayed-under-content-on-second-page/)
 *  [Gilbert](https://wordpress.org/support/users/gilbert69/)
 * (@gilbert69)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/left-sidebar-displayed-under-content-on-second-page/#post-4179500)
 * Somehow you have a closing tag missing. It’s the div for the main content (id
   =”primary”). And, because of this, the left sidebar is inside the main content
   instead floating aside.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Magazine Basic] Problem w linking images](https://wordpress.org/support/topic/problem-w-linking-images/)
 *  [Gilbert](https://wordpress.org/support/users/gilbert69/)
 * (@gilbert69)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/problem-w-linking-images/#post-4210541)
 * That’s because the linked images are displayed as block.
 *     ```
       a > img {
           border: 0 none !important;
           display: block;
       }
       ```
   
 * Try to override that css rule. Ex. add a class to your banners:
 *     ```
       a > img.banner {
           display: inline-block;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Magazine Basic] Right menu bar floating under posts area on last page.](https://wordpress.org/support/topic/right-menu-bar-floating-under-posts-area-on-last-page/)
 *  [Gilbert](https://wordpress.org/support/users/gilbert69/)
 * (@gilbert69)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/right-menu-bar-floating-under-posts-area-on-last-page/#post-4224470)
 * Sorry but I don’t see anything wrong on your blog.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Magazine Basic] Removing date of post & comments from individual posts](https://wordpress.org/support/topic/removing-date-of-post-comments-from-individual-posts/)
 *  [Gilbert](https://wordpress.org/support/users/gilbert69/)
 * (@gilbert69)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/removing-date-of-post-comments-from-individual-posts/#post-4122281)
 * Is not in single.php but in content-header.php (check there between <h2 class
   =”entry-meta”>…</h2>)
 * BTW, I don’t have any problems using Customize options. All my dates & comment
   counters are removed across the website when corresponding checkboxes are unchecked
   in admin.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Magazine Basic] Removing date of post & comments from individual posts](https://wordpress.org/support/topic/removing-date-of-post-comments-from-individual-posts/)
 *  [Gilbert](https://wordpress.org/support/users/gilbert69/)
 * (@gilbert69)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/removing-date-of-post-comments-from-individual-posts/#post-4122238)
 * So you tried to remove them from Admin -> Appearance -> Customize -> Layout (&
   Front Page) and it didn’t work?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Magazine Basic] Part of child style.css being over-rode by parent](https://wordpress.org/support/topic/part-of-child-stylecss-being-over-rode-by-parent/)
 *  [Gilbert](https://wordpress.org/support/users/gilbert69/)
 * (@gilbert69)
 * [13 years ago](https://wordpress.org/support/topic/part-of-child-stylecss-being-over-rode-by-parent/#post-3883503)
 * I have tested your CSS code on your child theme – /wp-content/themes/magazine-
   basic-child/style.css – and it was just fine. I don’t see any problem there.
 *     ```
       #site-navigation, #site-sub-navigation {
           background: #2d4262;
       }
       #site-navigation li:hover {
           background: #456596;
       }
       #site-navigation ul ul, #site-sub-navigation ul ul {
           background: #2d4262;
       }
       #site-sub-navigation li li:hover {
           background: #2d4262;
       }
       ```
   
 * No “!important” declaration needed. Your child style.css is overwriting the MB
   style.css
    Check for other issues, like this double hash ##: `.blue {background-
   color: ##00688B; ... }`
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Magazine Basic] Part of child style.css being over-rode by parent](https://wordpress.org/support/topic/part-of-child-stylecss-being-over-rode-by-parent/)
 *  [Gilbert](https://wordpress.org/support/users/gilbert69/)
 * (@gilbert69)
 * [13 years ago](https://wordpress.org/support/topic/part-of-child-stylecss-being-over-rode-by-parent/#post-3883492)
 * Try not to capitalize the “**!important**” CSS declaration.
    [See ‘!important’ rules on W3C](http://www.w3.org/TR/css3-cascade/#important-rules)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Magazine Basic] category posts per page](https://wordpress.org/support/topic/category-posts-per-page/)
 *  [Gilbert](https://wordpress.org/support/users/gilbert69/)
 * (@gilbert69)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/category-posts-per-page/#post-3834596)
 * Hi Frettsy.
    Before changing the code try this: WP Dashboard -> Settings/Reading-
   > “Blog pages show at most”
 * It should work for category, archive, tags and search result pages. If it doesn’t
   work then you have to do some changes in index.php
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Magazine Basic] Remove the white background-color to let appear the image background](https://wordpress.org/support/topic/remove-the-white-background-color-to-let-appear-the-image-background/)
 *  [Gilbert](https://wordpress.org/support/users/gilbert69/)
 * (@gilbert69)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/remove-the-white-background-color-to-let-appear-the-image-background/#post-3822306)
 * Change the value for all box-shadow properties:
 *     ```
       #page {
       	-moz-box-shadow: none;
       	-webkit-box-shadow: none;
       	box-shadow: none;
       	...
       }
       ```
   
 * Or – better way – just remove those three lines and you’ll also get rid of some
   extra bytes. 🙂
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Magazine Basic] Remove the white background-color to let appear the image background](https://wordpress.org/support/topic/remove-the-white-background-color-to-let-appear-the-image-background/)
 *  [Gilbert](https://wordpress.org/support/users/gilbert69/)
 * (@gilbert69)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/remove-the-white-background-color-to-let-appear-the-image-background/#post-3822146)
 * Without “strong” tags of course 🙂
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Magazine Basic] Remove the white background-color to let appear the image background](https://wordpress.org/support/topic/remove-the-white-background-color-to-let-appear-the-image-background/)
 *  [Gilbert](https://wordpress.org/support/users/gilbert69/)
 * (@gilbert69)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/remove-the-white-background-color-to-let-appear-the-image-background/#post-3822144)
 * You should set the background-color for the #page element to transparent. The
   property is hardcoded on functions.php (line 93).
    Or you can overwrite it on
   your CSS file (line 1570) so:
 *     ```
       #page {
           -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
           ...
           <strong>background-color: transparent !important;</strong>
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Magazine Basic] header image centering?](https://wordpress.org/support/topic/header-image-centering/)
 *  [Gilbert](https://wordpress.org/support/users/gilbert69/)
 * (@gilbert69)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/header-image-centering/#post-3738243)
 * You can try this:
 *     ```
       #header-img {
           display: block;
           margin-left: auto;
           margin-right: auto;
       }
       ```
   
 * Do it on your child theme.

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