dreamygreenie
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: It's not the header, so what is it?I actually have this theme installed myself and was flipping through here to see if I could find solutions to my problems because The Stormer theme support is awful :/ Unrelated to what was your problem, I’m curious how you set up the header and footer in the The Stormer page builder for your site. My site is not displaying the header and footer properly IN MOBILE VIEW. I just looked at your site and it’s perfectly find on mobile.
Forum: Fixing WordPress
In reply to: how to fix permalink issue in functions.php fileugh, I can’t get my code to embed. I tried using the Pastebin, but it doesn’t work. Sorry, I don’t spend much time on forums…it’s like my last resort.
Forum: Fixing WordPress
In reply to: how to fix permalink issue in functions.php fileI’m using the Hopefull theme. Here is what my functions.php looks like:
[37 lines of code moderated as per the Forum Rules. The maximum number of lines of code that you can post in these forums is ten lines. Please use the pastebin]
Forum: Themes and Templates
In reply to: comment link not working and sidebar widgets are skewedHave you figured this out yet? I’m having the same problem with my widgets. I just installed a new theme last week and for some reason the widgets aren’t displaying properly. This is particularly frustrating on the homepage – the right sidebar appears at the bottom of the page. I installed the Hopefull theme and really want my website to look like the theme, but instead it looks like this. Very frustrated ??
Forum: Fixing WordPress
In reply to: widgets not displaying properlyI currently have my homepage template set to “full width” because it’s the only way that doesn’t make the page look screwy. Here’s my sidebar.php code:
<div id=”sidebar_content”>
<!– Widgetized Areas –>
<div id=”donate-widget” class=”widget”>
<h3 style=”visibility: visible;”><span class=”typeface-js-vector-container”><canvas height=”18″ width=”65″ style=”margin-top: 0px; margin-bottom: 0px;”/><span class=”typeface-js-selected-text” style=”margin-left: -66px; letter-spacing: -0.125px; width: 65px;”>Support </span><canvas height=”18″ width=”32″ style=”margin-top: 0px; margin-bottom: 0px;”/><span class=”typeface-js-selected-text” style=”margin-left: -33px; letter-spacing: 0px; width: 32px;”>Our </span><canvas height=”18″ width=”48″ style=”margin-top: 0px; margin-bottom: 0px;”/><span class=”typeface-js-selected-text” style=”margin-left: -49px; letter-spacing: -0.2px; width: 48px;”>Cause</span></span></h3>
<div id=”donate-inner”><form method=”post” target=”_blank” action=”https://www.paypal.com/cgi-bin/webscr”>
<input type=”hidden” value=”_donations” name=”cmd”/>
<input type=”hidden” value=”[email protected]” name=”business”/><input type=”hidden” value=”Support Our Cause” name=”item_name”/>
<input type=”hidden” value=”0″ name=”no_note”/>
<input type=”hidden” value=”USD” name=”currency_code”/>
<input type=”hidden” value=”PP-DonationsBF:btn_donateCC_LG.gif:NonHostedGuest” name=”bn”/>
<input type=”submit” border=”0″ name=”submit” value=”Donate” class=”donate_side”/></form><p>Join the NMAA today</p>
<div class=”clear”/></div></div><div class=”widget widget_text” id=”text-3″><h3 style=”visibility: visible;”><span class=”typeface-js-vector-container”><canvas height=”18″ width=”32″ style=”margin-top: 0px; margin-bottom: 0px;”/><span class=”typeface-js-selected-text” style=”margin-left: -33px; letter-spacing: 0px; width: 32px;”>Our </span><canvas height=”18″ width=”58″ style=”margin-top: 0px; margin-bottom: 0px;”/><span class=”typeface-js-selected-text” style=”margin-left: -59px; letter-spacing: -0.142857px; width: 58px;”>Mission</span></span><span> </span></h3> <div class=”textwidget”>Our mission is to sustain our way of life by protecting land and water as community resources; and strengthening the farming and ranching traditions of our families and communities.</div>
<?php if(is_front_page() ) {
dynamic_sidebar(‘home’); }
elseif (is_single() || is_category() || is_archive() || is_page_template(‘template-blog.php’)) {
dynamic_sidebar(‘blog’);}
else {
dynamic_sidebar(‘general’);
} ?>
<!– /Widgetized Areas –>
<!– If no active widgets, display text –>
<?php if (is_front_page()) { if (!is_active_sidebar(home)){ ?><div id=”empty”></div><?php }} ?><?php if (!is_front_page() && !is_single() && !is_page_template(‘template-blog.php’) ) { if (!is_active_sidebar(general)){ ?><div id=”empty”></div><?php }} ?>
<?php if (is_single() || is_page_template(‘template-blog.php’)) { if (!is_active_sidebar(blog)){ ?></div><?php }} ?>
</div>
<!– /#sidebar –>