SwMy
Forum Replies Created
-
Forum: Plugins
In reply to: [Breadcrumb NavXT] “ tag in titleThanks, John. Got it now. A little embarrassed to say that I didn’t notice that there were several tabs on the settings page; I had changed the %htitle% to %ftitle% only on the “general” tab. Now I changed them on the “post types” tab, and all is ok.
Forum: Plugins
In reply to: [WP-PageNavi] html tags in post title showOops, sorry. I’m working on a site that was set up by someone else. It’s breadcrumb nav, not pagenavi, that is doing it. Apologies.
Forum: Themes and Templates
In reply to: Background image moves on window resizeSOLVED finally: added
display: table;
, and now it stays put.Found it here: https://www.webdesignerwall.com/tutorials/how-to-css-large-background/
thanks to a kind helper at themeshaper forums.
Forum: Themes and Templates
In reply to: Background image moves on window resizePosition:fixed — just tried that, then the background moves all over the place. Now it moves in relation to the wrapper only when the window is narrower than the wrapper. Thanks though.
body {style.css (line 37) background:#01245C url(Images/newbackground.jpg) no-repeat scroll 50% 0; margin-left:auto; margin-right:auto; min-width:940px; text-align:center; }
Forum: Themes and Templates
In reply to: I can’t find my wp-content/themes directoryShould be in the folder in which you installed wordpress.
Forum: Fixing WordPress
In reply to: Home tab doesn’t work properlySolved, see this thread
Forum: Fixing WordPress
In reply to: Home tab appears twiceSolved, code now reads:
<div id="menu"> <ul> <li class="<?php if ( is_home() ) { ?>current_page_item<?php } else { ?>page_item<?php } ?>"></a></li> <?php wp_list_pages('sort_column=menu_order&depth=1&title_li='); ?> </ul> </div>
Forum: Themes and Templates
In reply to: Page order not followed on menuYes, now it is solved. I changed the code above from
sort_column=id
to
sort_column=menu_order
Thanks.
Forum: Themes and Templates
In reply to: Page order not followed on menuThanks for the reply. Yes, the widget orders the pages by number; and they appear correctly in the sidebar. But they don’t appear correctly in the tabbed menu bar at the top of the page…
Forum: Fixing WordPress
In reply to: Home tab appears twiceAlso, it’s funny, the first home tab is a little different. It doesn’t have “hover” text, and doesn’t change when the home page is open. It is the second home tab that does all that. So I would want to delete the first home tab, and move the second one to the first position. But how?! I’ll be grateful for further assistance…
Forum: Fixing WordPress
In reply to: Home tab appears twiceyes, that would do it, sure, except that the div id=”menu” in which this appears is generated by the code which I pasted in the first post. So that code needs to be tweaked to stop generating two home tabs.
Any more ideas?
Forum: Fixing WordPress
In reply to: Home tab doesn’t work properlyAlso, with the home page removed with the links manager, it doesn’t appear in the pages widget in the sidebar. This is a problem…
Forum: Fixing WordPress
In reply to: Home tab doesn’t work properlyTry clicking one of the other tabs. The gradient on the tab is reversed, to indicate that that page is selected. But the home tab’s gradient doesn’t reverse, except when one hovers over it…