Hi there,
I’ve been trying to make some logos that I have in the navbar.php file responsive with no success at all. I tried to use media queries to make them responsive, but it doesn’t work. Could you please help me with this?
With your assitancce, I managed to create a DIV for the sponsors’ logos. But now I have the problem of them not being responsive. So, my question if I can use media queries for that matter or what should I do?
This is the PHP file I changed with your assistance:
<?php // ============================================================================= // VIEWS/GLOBAL/_NAVBAR.PHP // ----------------------------------------------------------------------------- // Outputs the navbar. // ============================================================================= $navbar_position = x_get_navbar_positioning(); $logo_nav_layout = x_get_logo_navigation_layout(); $is_one_page_nav = x_is_one_page_navigation(); ?> <?php if ( ( $navbar_position == 'static-top' || $navbar_position == 'fixed-top' || $is_one_page_nav ) && $logo_nav_layout == 'stacked' ) : ?>


I want to make the logos responsive. I tried this approach:
@media (max-width: 480px) {
.x-logobar#logo-columna-2.x-img.eda-logo {
width: 10%;
}
.x-img.das-logo {
width:10%;
}
.x-img.mintec-logo {
width:10%;
}
}
But it didn’t work.
Instead of having this:
I’d like to have the bottom logos smaller and in one horizontal line.
Could you please help me?
Regards,
Jose Luis