A few edits for Bizway..help

Discussion in 'BizWay WordPress Theme' started by treebee, Dec 8, 2012.

Thread Status:
Not open for further replies.
  1. treebee

    treebee New Member

    Joined:
    Aug 15, 2012
    Messages:
    16
    Likes Received:
    1
    There are a few edits I have been trying to make on the bizway theme but cant figure it out.

    Slider:
    • How can I remove all the slider navigation (arrows and dots) and is there a way to change the transition from slide to fade?
    Menu
    • How can I change the active and hover colors?
    Background
    • How can I stop the page from scrolling over the background image- I'd like them to move together if that makes sense?
    Thanks so much for any help!



     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    1.For your slider issues

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .flex-control-nav {
    display: none;
    }
    .flex-direction-nav li .next {
    display: none;
    }
    .flex-direction-nav li .prev {
    display: none;
    }
    Now,
    Go to Js > jquery.flexslider-min.js present in your theme directory and search "defaults" you can find only two result for it, go to second result and follow the instruction as shown in image given below
    [​IMG]
    2. For you menu issue
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    #menu li.current-menu-item a, #menu li.current-menu-parent a, #menu li.current_page_parent a, #menu li a.selected, #menu li a:hover, #menu li.current_page_item a{
    background:red;
    }
    Inplace of "red" put your color code.

    3.For your background issue

    Go to "header.php" present in your theme directory and remove the code given below

    Code:
    fixed
    Sending image for reference

    [​IMG]


    This will solve your issue.
     
  3. treebee

    treebee New Member

    Joined:
    Aug 15, 2012
    Messages:
    16
    Likes Received:
    1
    You are a god send! thank you so much for the detailed assistance:)
     
    Nitesh likes this.
Thread Status:
Not open for further replies.

Share This Page