Okay
  Public Ticket #2943524
Customize columns in mobile
Closed

Comments

  •  30
    lumpy5000 started the conversation

    Hello. I have sections in the desktop version of the website that, when viewed in mobile, puts everything into a single column. At times, it is better when there can be multiple columns viewable in mobile. But I have not yet figured out how to control how many columns appear in mobile. Everything seems to default to a single column. 

    In the link below (#about), you will see how the icons are in 5 columns on desktop, but 1 column in  mobile. I would like 2 columns in mobile. How can this be done?

    https://radiantsites.net/nls/#about

    And for the #team link, I would like the 3 columns here to also be 3 columns in mobile. Is this possible? Thank you! 

    https://radiantsites.net/nls/#team

    Oh, one more thing. The only options for the site's overall hyperlink style is either Inherit Accent Color or Basic Underline. Neither of these options is good for me. I would like there to be no change when hyperlinks are rolled over, or, at least have an option to choose a specific color. Is this possible?

  •  2,958
    Andrew replied

    Hi again,

    Try changing the column width for the respective columns on different devices in the responsive tab

    7956486369.png


    Regards,

  •  30
    lumpy5000 replied

    Thank you, Andrew. I'm not sure how I didn't see those option! I know it was a separate question added on, but did you see my other question regarding hyperlinks?

    The only options for the site's overall hyperlink style is either Inherit Accent Color or Basic Underline. Neither of these options is good for me. I would like there to be no change when hyperlinks are rolled over, or, at least have an option to choose a specific color. Is this possible via CSS or some other method?

  •  2,958
    Andrew replied

    Hello again,

    About the hyperlinks, do you have a specific section in mind? Kindly share a screenshot or link to this so that we can share the necessary CSS for this.

    Regards

  •  30
    lumpy5000 replied

    Thank you. Yes, in the footer. I would like to have the two hyperlinks (Manman and Radiant) be white text with no underline. 

    https://radiantsites.net/nls/#conac

  •  2,958
    Andrew replied

    Hello again,

    The following CSS might help.

    .wpb_text_column a {
        text-decoration: none;
    }
    

    Regards,

  •  30
    lumpy5000 replied

    Thank you. That worked perfectly!!