sasori390
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Site not centered on tablets.Ok, the style I mentioned is actually in the style.css of your parent theme.
So you want to override it in your own style.css.Add this to your style.css
#branding .only-search #searchform { z-index: auto; }
Hope this will work
Forum: Fixing WordPress
In reply to: Site not centered on tablets.Hi Anthyx
#branding .only-search #searchform { top: 5px; z-index: 1; }
Remove “z-index: 1;” unless you have a reason to keep.
The problem is the Search Form above the main banner. For some reasons the invisible form tag extends down about 170px and it covers over the navigation.
Removing “z-index: 1;” will bring the Search Form behind the navigation so the menu becomes clickable.Hope this helps.
Forum: Fixing WordPress
In reply to: Multiple conditional not workingHi keesiemeijer,
It worked with a small tweak.
For some reasons “is_page( 157,161 )” only works for 157, not 161.
So I changed to this and it worked.<?php if( ! ( is_front_page() || is_page( '157' ) || is_page( '161' ) || is_single( '334' ) ) ) { echo'<meta name="robots" content="noindex, nofollow" /> '; } ?>
Hope this is ok.
Thanks a million!Forum: Fixing WordPress
In reply to: Site not centered on tablets.You have following style;
.one-column #page { max-width: 1000px; min-width: 800px; }
Problem is “min-width: 800px;”. With this, the page won’t get smaller than 800px.
If you see the page on the tablets smaller than 800px width, such as iPad portrait, it will cut off the right side of the pageJust remove “min-width: 800px;”
Forum: Fixing WordPress
In reply to: Remove hyperlink from the post titles that have no content.Works like a charm! Thank you so much.
Forum: Fixing WordPress
In reply to: Remove hyperlink from the post titles that have no content.Thanks Doug, I tried your code. It does remove the hyperlink from the the blog titles that have no content like the way I want it, however I get the 404 page not found error when I click the titles that have content. Any clue?
Forum: Fixing WordPress
In reply to: changes not reflectedSolved by disabling WP-Cache plugin. ??