• On the start screen, the boxes for entering the name and email address are not properly aligned. How to make the email field below the name? And how to make the text aligned to justified??

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

Viewing 7 replies - 1 through 7 (of 7 total)
  • Hi,

    Actually the theme’s CSS is conflicting with the quizz’s CSS. You can do this easily with CSS. Please do tell me if you need help with the CSS code.

    Regards,
    Kriti

    Thread Starter Civil Engineering Notes

    (@civilenggnotes)

    I don’t have much idea about css, so please provide some css so that the problem is solved.

    Thread Starter Civil Engineering Notes

    (@civilenggnotes)

    hello??

    Hi,

    When I inspected the code, I noticed that the the following piece of code is causing the issue:

    .mlw_qmn_quiz .quiz_section .mlw_qmn_question_number, .mlw_qmn_quiz .quiz_section .mlw_qmn_question {
        display: inline!important;
    }

    Please replace it with the following piece of code:

    .mlw_qmn_quiz .quiz_section .mlw_qmn_question_number{
        display: inline!important;
    }

    Hope this will resolve the issue.

    Regards,
    Kriti

    Thread Starter Civil Engineering Notes

    (@civilenggnotes)

    hi @expresstechsupport
    when i am using your code, then the question numbers are not showing beside the question, which looks very odd. Please give some css which will do both correct the question number position and also the name, email box

    Hi there,

    I really don’t know whether you have custom coded this section or not:

    .mlw_qmn_quiz .quiz_section .mlw_qmn_question_number, .mlw_qmn_quiz .quiz_section .mlw_qmn_question {
        display: inline!important;
    }

    The following code must resolve the issue of the name and email boxes alignment issue, but it might conflict with the above css code,

    .mlw_qmn_quiz .quiz_section .mlw_qmn_question {
        display: block!important;
    }

    Please use this code and let me know if this resolves the issue or not.

    Regards,
    Kriti

    Thread Starter Civil Engineering Notes

    (@civilenggnotes)

    hi @expresstechsupport
    i got the above code from another support in this forum. And when I am using this code, question number and question are inlined, but name and email fields are not correct.

    .mlw_qmn_quiz .quiz_section .mlw_qmn_question_number, .mlw_qmn_quiz .quiz_section .mlw_qmn_question {
        display: inline!important;
    }

    and then using this code, but name and email fields are correct, but question number and question are not inlined.

    .mlw_qmn_quiz .quiz_section .mlw_qmn_question {
        display: block!important;
    }

    I need to solve at the same time

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Box styles are not perfect.’ is closed to new replies.