• Closed
  • Heidi Rivas
    Spectator
    05.01.2016 at 00:52 #23359

    Hello Team,
    I just working in a Blog Side and I want to do some small changes in my Evolve Theme
    For the main page, I would like to do these changes (Site: http://blog.focim.edu.mx)
    1.- Size of Slider: ¿It is possible change the heigth of the slider? I use a Bootstrap Slider and I would like this element more thin. ¿How I can change it?
    2.- Space between slider and content: It is possible to make this space more small? I prefer the content more closer to the slider.
    3.- Post Recent blocks: It is possible to edit in the blocks with recent post (“Ciencia”, “Recursos”) things like: color and border for each post?

    In other hand in the side bar (Single Post.- Example: http://blog.focim.edu.mx/2015/11/30/criterios-para-los-articulos-de-focim/), I have a couple of questions:
    1.- It is possible to center the image in the widget?
    2- How I can change the backgroud color for an specific widget, such as Text/HTML widget?
    3.- It is possible to center the Facebook Widget? It seems like left align.

    Thank you for your help!
    Regards,
    Heidi

    Denzel Chia
    Moderator
    Posts: 2656
    05.01.2016 at 10:10 #23368

    Hi,

    1.- Size of Slider: ¿It is possible change the heigth of the slider? I use a Bootstrap Slider and I would like this element more thin. ¿How I can change it?

    This is no advisable, your slider will be too small in mobile view. Text will overflow.

    2.- Space between slider and content: It is possible to make this space more small? I prefer the content more closer to the slider.

    Use the following in Theme Options -> Custom CSS

    .home #content {
    position: relative !important;
    top: -50px !important;
    }

    3.- Post Recent blocks: It is possible to edit in the blocks with recent post (“Ciencia”, “Recursos”) things like: color and border for each post?

    Yes, highly possible.
    Please tell me what color hex code for text and border.

    1.- It is possible to center the image in the widget?

    Use the following.

    #text-3 img {
    max-width: 100% !important;
    width: 400px;
    }

    2- How I can change the backgroud color for an specific widget, such as Text/HTML widget?

    You need to give your HTML a class name

    3.- It is possible to center the Facebook Widget? It seems like left align.

    Use the following

    .facebook-like iframe{
    position: relative !important;
    left:15px !important;
    }