image background size and image slider

Discussion in 'Covera WordPress Theme' started by marinos13, Nov 3, 2014.

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

    marinos13 Member

    Joined:
    Jun 27, 2014
    Messages:
    80
    Likes Received:
    3
    Location:
    Cyprus
    Hello,

    I upload the covera pro theme to the website http://temp.powermindsolutions.com/ and i need to make the following motifications:

    1) i need the picture on the sliders to cover all the area which was covered by text and image
    2) remove the background just from the sliders section.

    Thanks,
    Marinos Ioannou
     
  2. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello Marinos Ioannou,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .slide-image img {
    max-width: 100%;
    width: 100%;
    }
    .header-bg {
    background: none;
    }
    .header-wrapper {
    background: url(../../images/header-bg-blue.png) repeat-y #033664;
    background-position: center;
    }
    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     
  3. marinos13

    marinos13 Member

    Joined:
    Jun 27, 2014
    Messages:
    80
    Likes Received:
    3
    Location:
    Cyprus
    Hello,
    Part of it have been solved but there is a problem with hight
    Thanks,
    Marinos Ioannou
     
  4. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .slide-image img {
    height: 320px;
    }
    You can set height of images by default it's height is set to 320px you can change height in above code and apply in your Custom CSS.
    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     
  5. marinos13

    marinos13 Member

    Joined:
    Jun 27, 2014
    Messages:
    80
    Likes Received:
    3
    Location:
    Cyprus
    I have change this too but, there is still too much space between topbar-image-bottom bar. where can i change it from?
     
  6. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .slides_container {
    padding-bottom: 0;
    }
    .slider-container {
    padding-top: 15px;
    }
    .slide-image {
    padding-bottom: 15px;
    }
    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     
  7. marinos13

    marinos13 Member

    Joined:
    Jun 27, 2014
    Messages:
    80
    Likes Received:
    3
    Location:
    Cyprus
    Thanks a lot!!!
     
    Yogesh likes this.
Thread Status:
Not open for further replies.

Share This Page