boldlygo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Remove Blank Space HomepageHmm… the slider came with the theme. I don’t really need a slider. If I wanted to remove the slider and just put an image in its place how would I go about doing that?
Right now when I go into the slider settings from wordpress it says that I need to purchase the slider in order to unlock more features. All I really need to be able to do is have one image.
Forum: Fixing WordPress
In reply to: Remove ‘Continue Reading”The theme is called ‘business hour’. The active plugins that I have are: WP Meta and Date remover, WP Super Cache, and WPForms Lite. How do I hide coming soon? Is there a plugin I should deactivate?
Forum: Themes and Templates
In reply to: [Theme: Evolve] Darken Background Hover EffectI tried this, but it didn’t fix the problem:
.primary-menu li a:hover { background-color: #045904 !important; color: white #ffffff !important; }
Forum: Themes and Templates
In reply to: [Theme: Evolve] Darken Background Hover EffectHello Sam,
Thanks. It mostly worked. But for some reason the two menu items on the right (the ones without a drop down menu) do not display text when I hover over them if the darkened menu is turned on.
Forum: Themes and Templates
In reply to: [evolve] Menu CustomizationHello,
I do not have the box checked for “Disable main menu Hover Effect”. Just to double check, I added the lines back and the scroll effect was occuring again. The change was made to style.css.
This is what I have:
.link-effect a { overflow: hidden; padding: 8px 10px!important; height: 3.7em!important; line-height:2.5em!important; display: inline-block; } .link-effect .sub-menu a { padding: 4px 10px!important; height: auto!important; line-height:1.9em!important; } .link-effect a span { position: relative; display: inline-block; } .link-effect .sub-menu a span { display: block; } .link-effect a span.arrow {width:10px;} .link-effect a span::before { position: absolute; top: 100%; height:100%; width:110%; content: attr(data-hover); font-weight: 700; -webkit-transform: translate3d(0,0,0); -moz-transform: translate3d(0,0,0); transform: translate3d(0,0,0); } }
You can see the final website here: https://www.treenook.com/
Forum: Fixing WordPress
In reply to: Caption Margins Not Center AlignedHey Knoppys,
This is what I have around line 1144:
#righttopcolumn {float:right;position:relative;z-index:100;} .searchform {clear:right;position:relative;z-index:0;} #search-text-box {top:3px;float:right;} .widget-content #search-text-box {float:none;width:100%!important;} .widget-content #search-text {max-width:100%!important;}
But I don’t think that is it. What is the code around the width style? Sorry for being a newb.
Also, what do you recommend for the padding?
Thanks,
Forum: Themes and Templates
In reply to: [evolve] Menu CustomizationI figured out how to disable the scroll animation that was occurring when hovering over the menu items. For anyone else who is interested in doing this, you simply need to remove these lines from underneath .link-effect a span:
-webkit-transition: -webkit-transform 0.3s; -moz-transition: -moz-transform 0.3s; transition: transform 0.3s;
Forum: Fixing WordPress
In reply to: Menu Customization – Turn Off Gradient?For anyone else who is trying to figure this out for the Evolve theme:
From the wordpress control panel, click on Appearance, then Theme Options, and finally Custom CSS. Then put this:
.menu-header {background: #00CC00!important;}
in the Custom CSS field. Replace #00CC00 with your desired color.This was solved in a related thread that you can find here.
Forum: Themes and Templates
In reply to: [evolve] Menu CustomizationThank you Martin. I was able use information from the theme4press forums to figure out how to solve the fist problem.
It’s an easy fix. Putting this:
.menu-header {background: #00CC00!important;}
in the custom css field under theme options overuled the light color band that was running across the top of the menu bar.However, I’m still having trouble figuring out how to get rid of the scroll effect.
Forum: Fixing WordPress
In reply to: Menu Customization – Evolve themeOkay thanks. I posted it here and am marking this thread as resolved.
Forum: Fixing WordPress
In reply to: Menu Customization – Turn Off Gradient?Forum: Fixing WordPress
In reply to: Center Align Custom PageIt’s in the stylesheet. It doesn’t seem to be working :(.
Forum: Fixing WordPress
In reply to: Center Align Custom PageHey,
I tried adding that to the stylesheet but it didn’t work.
Forum: Fixing WordPress
In reply to: Menu does not show up when viewed from mobileIt worked! Thank you!
Forum: Fixing WordPress
In reply to: Menu does not show up when viewed from mobileI created the following page:
<?php /* Template Name: a Store Page */ ?> <?php get_header(); get_sidebar(); get_sidebar( 'content' );?> <div id="all"> <div class="sub"> <iframe src="https://astore.amazon.com/treemousepads-20" width="90%" height="900" scrolling="hidden" </div>align="middle"></iframe></div> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <?php the_content(__('[Read more]'));?> <?php endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p><?php endif; ?> <!-- The main column ends -->
Then I added this to the style sheet:
#all{ width:100%; float:center; text-align:center; } div.sub, iframe { margin: 0 auto; }