sonrisenewnan
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Auto scroll bar blocking widget titleStephencottontail, you are right. That fixed it!
Is it possible to change the color of that widget’s scrollbar to blend better with the site? Maybe a gray color.
Thanks,
MattForum: Themes and Templates
In reply to: Auto scroll bar blocking widget titleThanks again for your help! I am using a child theme for changes. You can see where I posted your code within the child theme.
I’m using the * Container Adjustment * to constrain all 3 home bottom widgets to 280px high regardless of content. Without this, they will resize based on content.
Matt
/* Theme Name: Resurrect Child Theme URI: http://sonrisebaptist.org/newsite/wp-contect/themes/resurrect-child/ Description: Resurrect Child Theme Author: Author URI: http://example.com Template: resurrect Version: 1.0.0 */ @import url("../resurrect/style.css"); span.wpcf7-list-item { display: block; } <!--The above code causes the checkboxes of Contact Form 7 to display as individual lines rather than all next to each other across one line--> /************** HOMEPAGE WIDGETS **************/ #resurrect-home-bottom-widgets { margin: -30px -3.3% 0 0; /* compensate for individual top widget margins + margin between columns*/ border-top: 1px solid transparent; /* hack to fix top margin */ } /* Container Adjustment */ .resurrect-home-widget { /* .resurrect-widget */ width: 30.2%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; height: 280px; #text-3 .textwidget.resurrect-widget-first-element { overflow-y: scroll; height: 250px; } section#text-3 { padding-right: 0; } }Forum: Themes and Templates
In reply to: Auto scroll bar blocking widget titleBojan,
Thanks for the help. I added that code but it didn’t make any change to the layout. Still looks the same. Do I need to delete something else?
Here’s the widget portion of the child theme .css:
/************** HOMEPAGE WIDGETS **************/ #resurrect-home-bottom-widgets { margin: -30px -3.3% 0 0; /* compensate for individual top widget margins + margin between columns*/ border-top: 1px solid transparent; /* hack to fix top margin */ } /* Container Adjustment */ .resurrect-home-widget { /* .resurrect-widget */ width: 30.2%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; height: 280px; #text-3 .textwidget.resurrect-widget-first-element { overflow-y: scroll; height: 250px; } section#text-3 { padding-right: 0; } }Thanks.
Forum: Themes and Templates
In reply to: Auto scroll bar blocking widget titleThanks Bojan. I removed the scroll bar code so you can see how the title is supposed to look. It actually needs to go up not down. Now you’ll notice the original problem, the Facebook content goes below the widget area.
This is a pic with the code
overflow:auto.
http://tinypic.com/view.php?pic=2s1vdw7&s=8#.VOIfeChqLFUThanks!
Forum: Themes and Templates
In reply to: Set fixed height for homepage widgets.This solution presented by Harmony Webworks has been working great (thanks!) except when the content exceeds what will fit in the defined fixed area of 280px height. Then it just runs beyond the fixed area to cover up the footer.
How can I make it stay in the 280px box? Should I add a scroll bar and if so how?
UPDATE:
I tried addingoverflow:autoand it does make the scroll bar appear and properly contains the text. However, now the title of each section is getting cut off.This is from my child theme. The overflow:auto may or may not be active when you view as I’m working on it…
/************** HOMEPAGE WIDGETS **************/ #resurrect-home-bottom-widgets { margin: -30px -3.3% 0 0; /* compensate for individual top widget margins + margin between columns*/ border-top: 1px solid transparent; /* hack to fix top margin */ } /* Container Adjustment */ .resurrect-home-widget { /* .resurrect-widget */ width: 30.2%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; height: 280px; overflow:auto }Forum: Themes and Templates
In reply to: Set fixed height for homepage widgets.Thanks so much for your help!!
Forum: Themes and Templates
In reply to: Set fixed height for homepage widgets.Could I add this to the child theme? So far I’ve only added one thing to it. This is all that’s in my child theme right now:
/* Theme Name: Resurrect Child Theme URI: http://sonrisebaptist.org/newsite/wp-contect/themes/resurrect-child/ Description: Resurrect Child Theme Author: Matt Riggs Author URI: http://example.com Template: resurrect Version: 1.0.0 */ @import url("../resurrect/style.css"); span.wpcf7-list-item { display: block; } <!--The above code causes the checkboxes of Contact Form 7 to display as individual lines rather than all next to each other across one line-->Forum: Themes and Templates
In reply to: Set fixed height for homepage widgets.Yes thanks. What code would I add to my child theme’s CSS to do that? Will this only affect the home page widgets?
Forum: Themes and Templates
In reply to: Set fixed height for homepage widgets.Jeremy, sorry the link wasn’t showing up for some reason but it’s in my original post now. Thanks.
Forum: Fixing WordPress
In reply to: Sidebar Moved to BottomYou nailed it! Thanks!