Navigation Move to top, second testimonial

Discussion in 'RoadFighter WordPress Theme' started by alclark2, Oct 1, 2013.

  1. alclark2

    alclark2 New Member

    Joined:
    May 9, 2013
    Messages:
    11
    Likes Received:
    0
    Hello,

    I have a client request to make some changes to the front page.

    1. Can I put the navigation at the top of the page, and move the logo and call button below it?

    2. Can I add a second testimonial widget beside the one that already exist? I can remove a article so there is just one to make room. Thanks

    www.greengenes.net
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    1. For your first issue,
    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
     .header_wrapper {
    position: relative;
    top: 60px;
    }
     
    .menu-wrapper {
    position: absolute;
    top: -26px;
    width: 1085px;
    }
     
    @media only screen and (max-width: 320px) {
    .menu-wrapper {
    width:auto;
    }}
     
    @media only screen and (max-width: 480px) {
    .menu-wrapper {
    width:auto;
    }}
     
    @media only screen and (min-width: 480px) and (max-width: 767px) {
    .menu-wrapper {
    width: auto;
    }}
     
    @media only screen and (min-width: 767px) and (max-width: 960px) {
    .header_wrapper {
    top: 85px;
    }
    .menu-wrapper {
    width: auto;
    }}
     
    @media only screen and (min-width: 960px) and (max-width: 1140px) {
    .header_wrapper {
    top: 85px;
    }
     
    .menu-wrapper {
    width: auto;
    }}
     
    

    2. Could you please clarify your second issue more clearly with the help of screenshot images.
     
  3. alclark2

    alclark2 New Member

    Joined:
    May 9, 2013
    Messages:
    11
    Likes Received:
    0
    Yes,

    Currently there is 1 testimonial on the page at the bottom, but they would like to have at least 2, maybe 3. So in the second picture I removed one of the blogs, but how do I get more testimonial blocks and how do I edit them, thanks

    I made the second picture in power point but that is what the end result should look like.
     

    Attached Files:

  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    It require lots of customization in the theme.
    If this isn't something you're able to do then you would need to hire a freelancer for this.
     
  5. alclark2

    alclark2 New Member

    Joined:
    May 9, 2013
    Messages:
    11
    Likes Received:
    0
    OK understood. I have another idea then. Can you tell me how to remove the article section and testimonial section so it does not show? Then replace that space with images of my choice? That way I can make my own testimonials images and stick them on the front pages in the same area. Thanks
     
  6. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107

Share This Page