Forum Replies Created

Viewing 30 posts - 1 through 30 (of 176 total)
  • Author
    Posts
  • in reply to: color section arrow not working #1489560

    Hi Ismael,

    Works perfect! Many thanks,

    BR,

    Antonio.

    in reply to: color section arrow not working #1489525

    Hi Ismael,

    Sorry I confused with the border down arrow.
    It is possible to change the arrow to a png?
    Many thanks,

    BR,

    Antonio.

    in reply to: Color section aligned to the center of its content #1488934

    I got it!

    Many thanks,
    BR,

    Antonio.

    in reply to: Change the space between table lines on mobile. #1488933

    Hi Ricard,

    Works perfect! Many thanks.

    BR,

    Antonio.

    in reply to: Color section aligned to the center of its content #1488903

    Hi again!

    I have find this in the documentation:

    /* Center align columns inside color section*/
    #ih-center-align-columns .entry-content-wrapper,
    #eh-center-align-columns .entry-content-wrapper .flex_column_table {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    justify-content: center;
    }

    #eh-center-align-columns .av-flex-placeholder {
    display: none;
    }

    But I have added:

    #colum_tabla .entry-content-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    justify-content: center;
    }

    But it do not works.

    Many thanks!

    BR,

    Antonio

    in reply to: Color section aligned to the center of its content #1488901

    Hi,

    I have find this in the first colum inside (#colum_tabla)

    body div .first, body div .no_margin {
    /* margin-left: 0; */
    }
    body .unit.alpha, body .units.alpha, body div .first {
    /* margin-left: 0; */
    clear: left;
    }

    I removed in the Google Console and the columns are center but I have tried to create a css with margin-left: unset; but it do not works.

    BR,

    Antonio.

    in reply to: Change the space between table lines on mobile. #1488382

    Hi Guenni,

    Here I send you the image with the space between table lines on mobile now and the space I would like.
    I don´t know why in the mobile version the space is bigger.
    Captura-de-pantalla-2025-08-16-a-las-9-28-49
    Captura-de-pantalla-2025-08-16-a-las-9-29-12

    Many Thanks,

    BR,

    Antonio

    in reply to: Change the space between table lines on mobile. #1488351

    Hi Guenni,

    Many thanks, I have add the brakes but the space between lines in mobile keep the same. In computer is correct but in the mobile version is bigger.
    Could you help me?

    BR,

    Antonio.

    in reply to: Change the space between table lines on mobile. #1488296

    Hi Rikard,

    Sorry it is about the space between lines in the tablet in mobile. See the attach the images; one is the line space now in mobile and the other the line space I would like.
    I try this:

    @media only screen and (max-width: 767px) {
    .avia-data-table.avia_pricing_minimal td, .avia-data-table.avia_pricing_minimal th {
    padding: 0px;
    }

    But the line space keep be big.

    Thanks advance,

    BR,

    Antonio.

    in reply to: Change the space between table lines on mobile. #1488273

    Hi Rikard,

    Works perfect, many thanks.
    Could you help me with the space between table lines on mobile? I achtatted images in the first post.
    Thanks,

    BR,

    Antonio.

    in reply to: Change the space between table lines on mobile. #1488244

    Hi RIkard,

    I have assigned a class colum_tabla for the left column and colum_plano for the right.
    Many thanks,

    BR,

    Antonio.

    in reply to: Horizontal scroll container #1488173

    Hi Ismael,

    No worries, works perfect!!
    Many thanks,

    BR,

    Antonio.

    in reply to: Create a bottom to change the language #1488125

    Hi Mike,

    I have create the div and works perfect. Many thanks!!!
    Check. the SSL.

    BR,

    Antonio.

    in reply to: Create a bottom to change the language #1488083

    Hi Mike,

    Sorry if I didn’t explain myself well, my English isn’t very good. The button in the footer already works, as I explained in the previous email. Sorry, the Spanish page wasn’t created because it gave an error. Now you can test it. The only thing I’m missing is creating the footers for desktop, tablet, and mobile. But the button on mobile is separate from the world image, and I’d like it to be on the same line and centered like the rest of the text. If you narrow the screen you will be able to see it. I’m sending you an image of how it is and how I would like it.

    Many thanks,

    BR,

    Antonio.

    in reply to: Menu changes color #1488066

    Hi Ismael,

    Works perfect! Many thanks!

    BR,

    Antonio

    in reply to: Create a bottom to change the language #1488064

    Hi Rikard,

    I use Polylang, I finally found a solution with this code in case it helps someone else:

    /**
    * Shortcode para mostrar un menú de WordPress
    */
    function rv_print_menu_shortcode( $atts ) {

    /**
    * Normalize
    *
    * Como medida de seguridad limpiamos los atributos
    * introducidos al escribir el Shortcode.
    */
    $atts = array_change_key_case( (array) $atts, CASE_LOWER );
    $atts = array_map( ‘sanitize_text_field’, $atts );

    /**
    * Atributtes
    *
    * A continuación guardamos los atributos en 2 variables
    */
    $menu_name = $atts[‘name’];
    $menu_class = $atts[‘class’];

    /**
    * Creamos la variable $menu_output que va a retornar todo
    * lo que conforma nuestro menú y llamamos a la función
    * de WordPress wp_nav_menu() y le pasamos como
    * parámetros nuestros atributos.
    */
    $menu_output = ‘<div class=”shortcode-menu”>’;

    $menu_output .= wp_nav_menu( array(
    ‘menu’ => esc_attr( $menu_name ),
    ‘menu_class’ => ‘menu ‘ . esc_attr( $menu_class ),
    ‘echo’ => false
    ) );

    $menu_output .= ‘</div>’;

    return $menu_output;

    }

    add_shortcode( ‘print-menu’, ‘rv_print_menu_shortcode’ );

    Then you add this with the name of your menu anywhere and it appears

    [print-menu name=”prueba”]

    I’ve created the different headers for desktop, tablet, and mobile, and now I’ll include them on the pages with a custom layout.

    That’s it, but I have a problem that might be simple, but I’m going crazy and can’t find the solution. The mobile text is centered, but I can’t get the world image and menu to be centered on the same line like desktop and tablet .

    Could you help me?

    Thank you very much in advance.

    BR,

    Antonio.

    in reply to: Horizontal scroll container #1488018

    Hi Ismael,

    I think it’s almost done, but at the end of the scroll, there’s a blank space that I don’t know how to remove.

    @media only screen and (max-width: 767px) {
    #mapcontainer .avia_codeblock_section {
    width: 1200px;
    }
    #mapcontainer {
    overflow-x: scroll;
    min-height: 500px;
    overflow-y: clip;
    }
    }

    Many thanks!

    BR,

    Antonio.

    in reply to: Bottom change information in same page #1488017

    Hi Mike,

    Sorry, you right. I have added the code incomplete.
    Works perfect.

    Many thanks!

    BR,

    Antonio.

    in reply to: Menu changes color #1488016

    Hi Ismael,

    Looks good, the only thing is the middle burger line remains white.
    Many thanks!

    BR,

    Antonio.

    in reply to: Horizontal scroll container #1488015

    Hi Ismael,

    I have tried and look perfect. I used only in mobile:
    @media only screen and (max-width: 767px) {
    #mapcontainer, #mapcontainer #hotspot-650 {
    min-width: 1200px;
    overflow: scroll;
    }

    #mapcontainer .avia_codeblock, #mapcontainer .avia_codeblock_section {
    width: 1200px;
    }
    }

    The issue is the scroll don’t move the container.
    Could you help me?

    Many Thanks,

    BR

    Antonio.

    in reply to: Bottom change information in same page #1487986

    Hi Ismael,

    I have had the test but no works ; (
    Here I send you the web if like check it.
    Many thanks,

    BR,

    Antonio

    in reply to: Secondary menu #1487934

    Works perfect! Many thanks Mike!!

    BR,

    Antonio.

    in reply to: Image next to the language selector #1487930

    Great Mike! Many thanks
    BR

    Antonio.

    in reply to: Remove header bottom line #1487929

    Hi Mike,

    Works perfect! Many thanks,

    BR,

    Antonio

    in reply to: Image next to the language selector #1487899

    Hi Ismael,

    Works Perfect!!
    How can I do that for non transparency header?
    Many thanks.
    BR,

    Antonio.

    in reply to: Edit templetes #1487880

    Hi Mike,

    Ok, many thanks.
    BR,

    Antonio.

    in reply to: Change hover sub menu color #1486978

    Hi,

    I have find it!
    Thanks,

    BR,

    Antonio.

    in reply to: Secondary menu #1486666

    I got it! Many thanks.

    in reply to: Secondary menu #1486638

    Many thanks, looks great.
    How can I remove the separate line?

    in reply to: Secondary menu #1486636

    Hi Ismael,

    I have add the CSS but it no works.
    Could yo help me?
    Thank you.

    BR,

    Antonio

Viewing 30 posts - 1 through 30 (of 176 total)