• REGISTRATION REQUIREMENTS:

    Your username here MUST MATCH your XenForo username (connected to your XF license).

    Once you have registered here, then you need to start a conversation at xenforo.com w/Bob and provide the following:
    1. Your XenForo License Validation Token
    2. The Domain Name associated with the License
    NOTE: Your account will be validated once ALL requirements are verified/met. Thank you for your patience.

Fixed Custom field and responsive style

Status
Not open for further replies.

3rd angle

Member
Showcase
image.jpg The custom fields are not compatible with the responsive layouts..

Is there any fix to this.. Am running 1.3
 
Try this...

edit the CSS template: nflj_showcase_item.css

FIND (on lines 122-124):
HTML:
    .tabInfo, .tabPairs {

        width: 500px;
    }

change width to max-width
HTML:
    .tabInfo, .tabPairs {
        max-width: 500px;
    }
 
btw, I've moved this from "support" into the "Bugs" forum as it (to me) is a bug. I've fixed it to the way core xenforo handles it by using a max-width on the div instead of a static width (as posted above).
 
Status
Not open for further replies.
Back
Top