New Landing How can we help? Themeforest Theme Support Joyn Theme CSS Changes on Mobile Devices

Viewing 6 posts - 1 through 6 (of 6 total)
  • Posted in: Joyn
  • #229793
    mfleetwood
    Member
    Post count: 12

    Hi there
    I have made various changes to the css of my theme for different colors and logos to be used on different pages. This is working perfectly on desktop viewing, however on the mobile version, these changes are not in effect. The standard white “top bar” color is used.
    1. How can I change the settings so that the different logos and top bar colors are also used in mobile / tablet viewing ?

    Also, I have a problem with my “about us” page, it is showing correctly on desktop, but on mobile, the right half of the page is missing.
    2. How can I change the settings so that this page is correctly visible on mobile and tablet devices?

    3. How can I decrease the size of the logo on mobile devices?

    Your help will be greatly appreciated
    thank you so much

    #230177
    David Martin – Support
    Moderator
    Post count: 20834

    1) You will need to use the appropriate media queries for different screen sizes or device. A great list of what to use can be found here: http://stephen.io/mediaqueries/

    2) This is caused by your custom code, it has made the responsive CSS not work correctly. You have specified exact px widths for divs which is causing the problem. For example:

    .page-id-13069 .spb-row-container.remove-element-spacing .row {
        width: 800px;

    This is not great practice, I would suggest you use something like width: 100%; max-width: 800px;

    3) Please use this example:

    #mobile-logo.has-img {
        max-width: 30%;
    }

    Thanks,
    David.

    #231083
    mfleetwood
    Member
    Post count: 12
    This reply has been marked as private.
    #231351
    David Martin – Support
    Moderator
    Post count: 20834

    I cannot login with those details, looks like I need to login to actually view the page.

    Cheers,
    David.

    #231398
    mfleetwood
    Member
    Post count: 12
    This reply has been marked as private.
    #231579
    David Martin – Support
    Moderator
    Post count: 20834

    For an iPad mini, this should help you:

    @media only screen 
    and (min-device-width : 768px) 
    and (max-device-width : 1024px)
    and (-webkit-min-device-pixel-ratio: 1)  {
    .page-id-13356 #logo.has-img a {
        background-size: 80%!important;
    }
    }

    Thanks.

Viewing 6 posts - 1 through 6 (of 6 total)

You must be logged in and have valid license to reply to this topic.

License required for one of the following items
Login and Registration Log in · Register