Forum Replies Created

Viewing 15 replies - 1 through 15 (of 40 total)
  • Thread Starter boldlygo

    (@boldlygo)

    Hmm… 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.

    Thread Starter boldlygo

    (@boldlygo)

    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?

    Thread Starter boldlygo

    (@boldlygo)

    I tried this, but it didn’t fix the problem:

    .primary-menu li a:hover {
        background-color: #045904 !important;
      color: white #ffffff !important;
    }
    Thread Starter boldlygo

    (@boldlygo)

    Hello 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.

    Thread Starter boldlygo

    (@boldlygo)

    Hello,

    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: http://www.treenook.com/

    Thread Starter boldlygo

    (@boldlygo)

    Hey 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,

    Thread Starter boldlygo

    (@boldlygo)

    I 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;
    Thread Starter boldlygo

    (@boldlygo)

    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.

    Thread Starter boldlygo

    (@boldlygo)

    Thank 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.

    Thread Starter boldlygo

    (@boldlygo)

    Okay thanks. I posted it here and am marking this thread as resolved.

    Thread Starter boldlygo

    (@boldlygo)

    Thread Starter boldlygo

    (@boldlygo)

    It’s in the stylesheet. It doesn’t seem to be working :(.

    Thread Starter boldlygo

    (@boldlygo)

    Hey,

    I tried adding that to the stylesheet but it didn’t work.

    Thread Starter boldlygo

    (@boldlygo)

    It worked! Thank you!

    Thread Starter boldlygo

    (@boldlygo)

    I 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="http://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;
    }
Viewing 15 replies - 1 through 15 (of 40 total)