Home Analyst Portal

Resizing Request Offering prompts

NIcholas_ScottNIcholas_Scott Customer IT Monkey ✭
Is there some way to resize the prompts on a request offering? I built an advanced request offering and I am getting this when I mix a form with a text input and a drop down list. I'd like to see the two dropdown lists match up with the width of the textbox, or at least have the question/prompt text stay on one line.


Best Answer

  • Roland_KindRoland_Kind Partner Advanced IT Monkey ✭✭✭
    edited November 2017 Answer ✓

    the following lines added to custom.css might help:


    .question-container > .col-md-4 {
        width: 50%;
    }


    please note: not tested under all possible conditions :-)

Answers

  • Roland_KindRoland_Kind Partner Advanced IT Monkey ✭✭✭
    edited November 2017 Answer ✓

    the following lines added to custom.css might help:


    .question-container > .col-md-4 {
        width: 50%;
    }


    please note: not tested under all possible conditions :-)

  • NIcholas_ScottNIcholas_Scott Customer IT Monkey ✭
    Thanks! That seems to work pretty well on my request offerings. I did make some adjustments to it to make better use of the space. When you resize the browser window it squished things too much.
    This is my final css:

    .question-container > .col-md-4, .col-md-6 {
        width: 75%;
    }

Sign In or Register to comment.