Columns with links

Hi
We struggling with implement links for columns.
On our page https://www.cloudxs.ch/services/ we want all blue quaters (columns) with links to subsites but witch no success.
Thank your very much for your help

cloudxs

Hi Aron,

Thanks for reaching out.

Columns are not really worked as a link, outer or inner wrapping it with the link will break its structure since it’s now using flex styling. For that, I recommend doing that grid in Essential Grid with custom source, then use its skin editor tool to create a skin applicable for your current design. Please check this https://theme.co/apex/forum/t/extension-essential-grid/68 and https://www.themepunch.com/essgrid-doc/item-skin-editor/

Thanks!

Hi @Rad thank you very much
May you can help me with another trick:
How can I fix the header for mobile view, like the desktop site
Thank you very much for your help

Hi Aron,

To make the header on mobile view fix, you can add this to Theme Options > CSS

@media (max-width: 979px) {
.site {
	margin-top: 100px;
}
.x-navbar {
	position: fixed !important;
	width: 100%;
	left: 0;
	top: 0;
	right: 0;
	}
}

Please keep in mind though, that fixed header will cover your content if open.

Thanks,

Thank you very much for fast and perfect help

You’re welcome, Aron.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.