• Hello,

    I put borders (frames) to some columns of my web page. On a computer or a tablet the borders are displayed fine but on mobile devices only the top and bottom borders are displayed, not the side borders. I have tried changing the margins and column sizes but in all cases the side borders don’t display on mobile devices.

    I use the Chrome browser with windows 10. My site theme is Weston with WP Bakery editor. I contacted WP Bakery and the theme support but they could not help me, that’s why I’m asking you, sorry for the inconvenience.

    Could you tell me how can I solve this problem?

    Many thanks in advance

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • lisa

    (@contentiskey)

    I inspected your site using Chrome Browser Tools. I found a CSS media query. The side borders seem to set to a width of 0px for devices narrower than 959px. The CSS code might be related to your theme “Weston”. look in your theme’s CSS file to see if you find it. You can change the settings in the area of customizer “Additional CSS” – alternatively, contact the theme’s support team for guidance.(https://themetrust.com/support-forums/)

    found while inspecting with Chrome Browser Tools

    @media (max-width: 959px){
    div[class*=vc_custom_] {
        margin-left: 0;
        border-left-width: 0 !important;
        border-right-width: 0 !important;
    }
    }

    try this CSS instead

    @media (max-width: 959px){
    div[class*=vc_custom_] {
        margin-left: 0;
        border-left-width: 2px !important;
        border-right-width: 2px !important;
    }
    }

    contact your theme’s support team for additional guidance

    /*
    Theme Name: Weston
    Theme URI: https://themetrust.com/themes/weston
    Author: ThemeTrust.com
    Author URI: https://themetrust.com
    Description: Weston is a multipurpose WordPress theme.
    Version: 2.1.7
    License: GNU General Public License v2 or later
    License URI: https://www.gnu.org/licenses/gpl-2.0.html
    Text Domain: Weston
    Domain Path: /languages/
    Tags:
    Thread Starter Grandjean

    (@flograndjean)

    Thanks a lot for your answer with this useful information, I followed your advice and the problem is solved !

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘side column borders not displayed on mobile devices’ is closed to new replies.