Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #213015

    What is the process of creating / adding CSS for responsive versions of my site? Specifically, I am interested in making some changes in the smartphone/iphone size.

    I’ve added some CSS to the Custom CSS file where it says to input mobile styles but nothing happened. Is there something I’m not understanding? Any help would be appreciated. Thanks!

    #213018

    Hey wss310!

    Can we take a look at your site? We’ll inspect your custom.css and make sure the css is added in correctly.

    Regards,
    Devin

    #213028

    Sure, it is noblewhy.com.

    The CSS I’m trying to change on the mobile version is the rounded corners on the tab content sections. Here is the code I put under the Mobile styles in the custom.css:

    .js_active .active_tab_content {
    border-top-right-radius:2px;
    }}

    #213067

    Hi!

    You can add it inside a media query for mobile screen size:

    @media only screen and (max-width: 767px) {
    .js_active .active_tab_content {
    border-top-right-radius: 2px;
    }
    }

    Cheers!
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Mobile formatting’ is closed to new replies.