Align Slider and Arrow Icons

Discussion in 'Real Photography WordPress Theme' started by clyde, Apr 27, 2013.

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

    clyde New Member

    Joined:
    Mar 25, 2013
    Messages:
    9
    Likes Received:
    0
    Hello,

    If you can see my demo site,

    http://fractalblognetwork.com/eva/

    I have made the slider smaller, but im not sure how i can align it in the center with responsive behavior.

    I would also like to activate the arrow icons at the side of the slider how would i do that ?

    Thanks
    Clyde
     
  2. Harmeet

    Harmeet Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    360
    Likes Received:
    15
    Hello,
    Put the following code in your custom css

    Appearance -> theme options -> styling options -> custom css

    Code:
    .flexslider {
        margin-left: 150px;
        }
        @media only screen and (max-width: 959px) and (min-width: 768px)
        .flexslider {
        margin-left: 40px;
        }
    This will solve your problem.
     
  3. clyde

    clyde New Member

    Joined:
    Mar 25, 2013
    Messages:
    9
    Likes Received:
    0
    hi harmeet,

    this does not worjk with the responsive layout,.... as when you resize the window to that of a phone screen you will see the image is not aligned in the center...

    thanks
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)
    Code:
    @media only screen and (max-width: 959px) and (min-width: 768px){
        .flexslider {
        margin-left: 0px;
        }}
    @media only screen and (min-width: 480px) and (max-width: 767px) {
    .flexslider {
        margin-left: 0px;
        }}
    @media only screen and (max-width: 480px) {
    .flexslider {
        margin-left: 0px;
        }}
    
    This will solve your issue.
     
  5. clyde

    clyde New Member

    Joined:
    Mar 25, 2013
    Messages:
    9
    Likes Received:
    0
    hi piyush

    i have not tried that code

    but for flexislider this code

    Code:
    .flexslider {
    margin: 0 auto; 
    always aligns the image to the middle :) same as yours just smaller
    also i have not been told how to display the arrow. .. please help me with that... thanks
     
  6. Piyush

    Piyush Support Staff

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

    clyde New Member

    Joined:
    Mar 25, 2013
    Messages:
    9
    Likes Received:
    0
    Hi Piyush ,

    I already am on the latest version, i also reinstalled the theme, but there are no arrows at the side of the slider still........

    Thanks,
    Clyde
     
  8. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,
    We have checked your website and it seems that you are using only single image in your slider that's why the arrows are not showing in your slider, Use atleast two images in your slider side arrows automatically seems at your slider.
     
  9. clyde

    clyde New Member

    Joined:
    Mar 25, 2013
    Messages:
    9
    Likes Received:
    0
    oh thanks :)
     
Thread Status:
Not open for further replies.

Share This Page