mbartizmo
Forum Replies Created
-
Forum: Plugins
In reply to: [wpForo Forum] Update showing (but can’t find it)Hello. Yes, I have one banned user. I just deleted him. Now the notification is gone. Thanks!
Forum: Plugins
In reply to: [Max Mega Menu] Duplicate ID mega-toggle-block-1 (using two menus)Thanks. It works.
Forum: Plugins
In reply to: [Max Mega Menu] Duplicate ID mega-toggle-block-1 (using two menus)Hello. I see the conundrum.
Is that code meant to work as is, or do I have to enter my menu’s variables in place of $theme_id, etc?
As is, I get these errors (twice):
Warning: Missing argument 2 for remove_ids_from_toggle_blocks() in /home/ecftpuser/englishcurrent.com/wp-content/themes/twentytwelve-child/functions.php on line 202
Warning: Missing argument 3 for remove_ids_from_toggle_blocks() in /home/ecftpuser/englishcurrent.com/wp-content/themes/twentytwelve-child/functions.php on line 202
Warning: Missing argument 4 for remove_ids_from_toggle_blocks() in /home/ecftpuser/englishcurrent.com/wp-content/themes/twentytwelve-child/functions.php on line 202
Warning: Missing argument 5 for remove_ids_from_toggle_blocks() in /home/ecftpuser/englishcurrent.com/wp-content/themes/twentytwelve-child/functions.php on line 202
Warning: Missing argument 6 for remove_ids_from_toggle_blocks() in /home/ecftpuser/englishcurrent.com/wp-content/themes/twentytwelve-child/functions.php on line 202
MB
Forum: Fixing WordPress
In reply to: get_the_excerpt returning blank string since WP 4.5 upgradeThanks for the advice. I could not find any recent information on that link, however.
Forum: Themes and Templates
In reply to: newly added sidebar showing below contentI gave up; this thing was ruining my xmas =) I ended up using a two-column table (#content in one td, and #get_sidebar(‘right)’ in the other td). the left sidebar comes in using a minus margin.
This is how I had it before actually. Hopefully it’s not some kind of html sin. It works at least.
Thanks for your help
MBForum: Themes and Templates
In reply to: newly added sidebar showing below content… and would I include that HTML at the bottom of my page.php, in place of the “get_sidebar()” call? or would it go in the sidebar.php page?
Thanks for your help with this.
Forum: Themes and Templates
In reply to: newly added sidebar showing below contentI have failed in sorting out how to do it with minus margins. Can anyone offer a hand?
https://www.englishcurrent.com/
problem: the right sidebar (position: absolute;) overlaps the main content and even left sidebar when the window is made smaller. I would like the #content to maintain a minimum width of 550px or so and not be overlapped by the right sidebar.Here is the 3c-b.css (sidebar css) file:
div#container { width:100%; } div#content { float: left; margin:0 260px 0 180px; min-width:550px; position: relative; } div.sidebar { overflow:hidden; width:160px; } div#primary { float:left; position: absolute; left: 5px; } div#secondary { float:left; } div#third { width:250px; position: absolute; right: 0; } div#footer { clear:left; width:100%; }
Forum: Themes and Templates
In reply to: newly added sidebar showing below contenthmm. maybe the absolute position isn’t the best way. when I resize the browser window (and make the window smaller), the right sidebar is the boss; it overlaps the content and refuses to go off screen (I guess that’s what absolute does?)
I guess I’d like to lock a minimal width for the #content, e.g. width: 600px;
i’m going to try to figure it out how to get the right sidebar to display with negative margin values. if you happen to read this and want to shed some light, please do.
btw: I don’t think I’m working with a child-theme since I don’t really know what that is. I’m using Sandbox 1.6.2
Forum: Themes and Templates
In reply to: newly added sidebar showing below contentandrew: that fixed it! these two lines in my div#third section:
position: absolute;
right: 0;thanks!
Forum: Themes and Templates
In reply to: newly added sidebar showing below contentFor troubleshooting purposes, I took out the Amazon Affiliates widget which caused about 15 errors. I switched several of the ‘OnClick’ calls to lowercase to be compatible with XHTML. i fixed a few more and got it down from 29 years to 7.
The right-sidebar bar is below content on all pages, including the main one. Any ideas?
Forum: Themes and Templates
In reply to: newly added sidebar showing below contentok. i cleaned up the HTML problems identified by the validator (one unclosed table and a few unclosed divs). I didn’t touch errors related to php that wasn’t mine or google analytics/adsense code.
The right sidebar is still below the content though. Any ideas?
Forum: Themes and Templates
In reply to: newly added sidebar showing below contentwow. gross. i have a lot of clean-up to do. good validator site. thanks. let me clean it up and then mark as resolved if that fixed it.
Forum: Plugins
In reply to: [Yoast SEO] [Plugin: WordPress SEO by Yoast] sitemap.xml wrong date for blogthanks for the investigation =) your solution worked for me, except instead of using the full quotes (“) i had to use the single apostrophe ‘
$time=’time()’;
lord love a duck.
-MB