Gilbert
Forum Replies Created
-
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.
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
In reply to: [Magazine Basic] Problem w linking imagesThat’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; }Sorry but I don’t see anything wrong on your blog.
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.
So you tried to remove them from Admin -> Appearance -> Customize -> Layout (& Front Page) and it didn’t work?
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; ... }Try not to capitalize the “!important” CSS declaration.
See ‘!important’ rules on W3CForum: Themes and Templates
In reply to: [Magazine Basic] category posts per pageHi 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
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. π
Without “strong” tags of course π
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
In reply to: [Magazine Basic] header image centering?You can try this:
#header-img { display: block; margin-left: auto; margin-right: auto; }Do it on your child theme.