Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #1276070

    Hi,
    i have a colorsection and would like to put 3 columns parallel into that. The middle one is just a dooted line, so it doent nee so much space. How can i make it very small?
    The smallest column is right now1/5

    That section looks not right on the mobile version. The text is to much on the right side.
    Any idea how i can change that?

    Many greetings,
    rixi

    #1276471

    Hey rixi,

    I’m not sure I understand exactly what you are looking to change. Could you try to explain a bit further, or post a screenshot highlighting your intentions please?

    Best regards,
    Rikard

    #1277082

    Hi again,
    perhaps its easier when i ask if it is possible to make more than 5 colums.
    I have a contact area with 4 columns text but in between are dottel lines as a separator. So i need all together7 columns.
    How can i manage that?

    Many greetings Rixi

    #1277286

    Hi,

    Thanks for the clarification. I had a look at the image at the end, and I think you would only need 4 columns, as the dashed lines can be created with CSS. Please add the content to 1/4 elements, then we can help you out with CSS in order to create the dashed lines.

    Best regards,
    Rikard

    #1277294
    This reply has been marked as private.
    #1277620

    Hi,

    Thanks for the update. I added a class to the columns in question, then this to Quick CSS:

    .dashed_column {
        border-right: 2px dashed #2F396A !important;
        margin-left: 3%;
        padding-right: 3%;
    }

    I’m not sure if it’s what you had in mind, or if you want to keep on using the image? If so then we can try to set it as a background instead.

    Best regards,
    Rikard

    #1277655

    Hi Rikard,
    thank a lot! Its perfekt!!! jippiiiieeee :)

    Many greetings
    rixi

    #1277906

    Hi,

    Great, I’m glad that we could help :-)

    Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #1278448

    Hi again,
    could you please tell me how i can delete the dottet lines on mobile? There i don`t really need them beside the text.
    That would be great!!!

    Many greetings rixi

    #1278484

    Hi,

    Add this to quick css:

    @media only screen and (max-width: 767px) {
    .wp-image-526.avia-img-lazy-loading-not-526.avia_image{
    display:none!important;
    }}

    Best regards,
    Jordan Shannon

    #1278582

    Hi Jordan,
    thanks for your answer! I put that code to my quick css but the dottet lines are still by the contact details on the right side in the bottom part ofthe page. Is it possible to delete that over there?

    Many greetings rixi

    #1278937

    Hi,

    Thanks for the update. Please replace this CSS:

    .dashed_column {
        border-right: 2px dashed #2F396A !important;
        margin-left: 3%;
        padding-right: 3%;
    }

    With this:

    @media only screen and (min-width: 768px) {
    .dashed_column {
        border-right: 2px dashed #2F396A !important;
        margin-left: 3%;
        padding-right: 3%;
    }
    }

    Best regards,
    Rikard

    #1278981

    Hi Rikard,
    great, thank you, that worked :) :)

    Many greetings
    rixi

    #1279296

    Hi,

    Great, I’m glad that you got it working. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

Viewing 14 posts - 1 through 14 (of 14 total)
  • You must be logged in to reply to this topic.