Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #428536

    Hola,

    me gustaría poder cambiar 3 parámetros de un objeto “pase de diapositivas”:
    1.- Modificar el tamaño del título
    2.- Ampliar el espacio entre la foto y el título
    3.- Ampliar el excerpt del texto de cada entrada del blog en ese pase de diapositivas

    Gracias!

    #429743

    Hi martinapez!

    1.) Los títulos puedes cambiar en Enfold->Advanced Styling
    Selecta los títulos que necesitas (H1-H6) para modificarlos.

    2.) Tendrías que decirnos donde en tu pagina, no podemos prever :). Dame un Link y un screenshot (imgur.com) que enseña exactamente donde necesitas mas espacio. De repente en tu blog? si es cierto entonces usa este código en Quick CSS:

    .entry-content-wrapper .post-title {
    margin-top: 10px;
    }
    

    3.) Estas usando el “Content Slider”, no cierto? Depende de ti cuanto texto pones en cada slider del content slider. Si abres un slider para editarlo, busca la sección donde dice “slider content” para poner mas texto.

    Si aun necesitas ayuda, por favor enseña unos screenshots para tener una idea clara de lo que queres hacer. Acceso de admin seria bien para tener también.

    Saludos,
    Andy

    #430712

    Buenas,

    Andy, te creado un usuario administrador para que puedas ver qué puede estar pasando.

    Te adjunto dos capturas, de la home y de la página del blog, donde está lo que os comento:

    En la home he utilizado el objeto pase de diapositivas, que es el que muestra las entradas del blog, y ahí es donde está problema, no en el slider de la parte superior.
    He utilizado además el plugin Easy Google Fonts para poder elegir las fuentes de la web, pero sólo me lo coge en los párrafos y en las H1 a H6, ¿cómo puedo hacer para que funcione para todos los bloques de texto? ¿Puede haber alguna incompatibilidad entre este plugin y el tema?

    Muchas gracias, espero noticias.

    #431644

    Hi!

    muchas gracias por tus capturas.

    Para tu pagina home usa este codigo en Quick CSS:
    Mas distancia entre foto y titulo:

    .slide-content {
    padding-top: 15px;
    }
    

    Titulo mas grande:

    header.entry-content-header {
    font-size: 20px;
    } 
    

    Para tu pagina Blog usa este codigo:
    Mas distancia entre foto y titulo:

    header.entry-content-header {
    padding-top: 15px;
    }
    

    Titulo mas grande:

    .entry-content-wrapper .post-title {
    font-size: 25px;
    }
    

    Sobre el excerpt que necesitas mas largo, necesitamos acceso de administrador, para ver exacto como lo estas usando. Nos puedes mandar los datos aqui mismo, marcando el mensaje como privado.

    Saludos!
    Andy

    #431645

    Hi,

    this the translation from the previos message:

    Regarding the home page this is the info:
    “Mas distancia entre foto y título” means “more space between the photo and the title”
    “Estos titulares más grandes” means “Title must be bigger than now”
    “El excerpt más largo” means “excerpt must be longer than now”

    Regarding the blog page:
    “Mas distancia entre foto y título” means “more space between the photo and the title”
    “Título más grande” means “Title must be bigger than now”

    At the home page I used a object called “pase de diapositivas”, in english it must be “slider object”, the problem is on this object, not at the upper slider.

    I also used a plugin called “Easy Google Fonts” in order to can choose the fonts at the website, but this plugin seems only work with the paragraphs with H1 until H6, how could I change it to work with any text block? Could it be any problem between this plugin and the theme?

    Thank you in advance!

    #432441

    Hi,

    I applied all the code you wrote, and it works perfect, thanks!

    Regarding the excerpt parameter, I added this code at the end of functions.php file:

    ================
    add_filter(‘avf_postgrid_excerpt_length’,’avia_change_excerpt_length’,10,1);
    function avia_change_excerpt_length()
    {
    return 300;
    }
    ================

    is it ok?

    Please, take a look at the other thread I have opened, I still having the problem with masonry configuration at the blog, the page called “Y así la vida”.

    Thanks.

    #433482

    Hi!

    Yes, the code you added to bottom of Functions.php file is correct.
    We will look into your other thread.

    Regards,
    Yigit

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.