ApeConMyth
Forum Replies Created
-
Forum: Plugins
In reply to: [Link Library] [Plugin: Link Library] Links not showingYannick => 5.4.7 reinstalled! Still getting “No links found.” https://www.apeconmyth.com/testing-1-2-3/
Thanks for your time!
Forum: Plugins
In reply to: [Link Library] [Plugin: Link Library] Links not showingWow! Yes, 2.5.5 worked and confirmed this is the plugin I am looking for!
Yannick, any thoughts on why the latest version wouldn’t work for us? I’m going to keep exploring with 2.5.5 but would love to update at some point if possible.
Thanks!
Forum: Plugins
In reply to: [Link Library] [Plugin: Link Library] Links not showingForum: Themes and Templates
In reply to: Increase page width to accommodate wider sidebar?For any veryplaintxt users who ramble down this same road, the answer lies in the css coming from the Theme Options via functions.php
get_option('veryplaintxt_posttextalignment') ) ); } if ( get_option('veryplaintxt_sidebarposition') == "" ) { $sidebarposition = 'body div#container { float: left; margin: 0 -200px 2em 0; } body div#content { margin: 3em 200px 0 0; } body div.sidebar { float: right; } ';
There are two more sections right below this chunk where the right margin is getting -200/200px to accommodate the 180px sidebar, so if you want a larger sidebar, that’s what you need to change.
Also, for adding/removing the sidebar for single posts and pages, see here: https://code.google.com/p/veryplaintxt/wiki/SidebarMod
And as for the width of 936, it all depends on your Theme Option settings. It’s Maximum Width * 16 (if width is em) * Base Font Size, so in my case 65*16*.9=936
Good luck!
Forum: Themes and Templates
In reply to: Increase page width to accommodate wider sidebar?Okay, I just installed the Web Developer plugin for Firefox and looking at the Div Order and Block Size, I’m beginning to see the light.
Could anyone riddle me this though?:
The wrapper holding everything seems to max out at 936px, but 936 is specified nowhere in the theme/css. Where is it coming from?Thanks again.
Forum: Themes and Templates
In reply to: Increase page width to accommodate wider sidebar?esmi,
Thanks for the reply!When I removed
body div#container{width:90%;}
, my blog posts went 100% on the page and pushed the sidebar below them.On this practice page,
https://www.apeconmyth.com/00148-housing/
I’ve started a page template without the sidebar to fit the 1000px image on there, and when I removed the above code the image did go full, but it extended past the header on the right (whereas I would “hope” that the header would extend with it).