Jump to content

Featured Replies

Posted

We have one Subscription plan on 99nicu.org , but the page showing this has a strange layout, the plan shows in a narrow column to the left. Tried in the Theme editor to change from Grid to List, without any layout change.

Is this due to that this plan was created in the v4 software?

Or any admin dashboard setting somewhere that we should change?

Skärmavbild 2025-02-20 kl. 19.14.04.png

That is the current design of the Subscriptions page. It is designed for many subscriptions, not really one. I have moved this to our Feedback forum.

2 minutes ago, Stefan Johansson_72643 said:

Thanks, would there be a way to change this without coding?

Not currently.

You can make the subscription occupy the entire width using CSS, however I'm not entirely sure that looks any better:

.ipsData--subscriptions{
	--i-data--max: 1;
}

.ipsData--subscriptions .ipsData__image{
	max-height: 200px;
}

Alternatively, you can change the style to a table (or any other ipsData design) using the following JS:

(function(){
	let subscriptionsList = document.querySelector(".ipsData--subscriptions");
	if(!subscriptionsList) return;
	subscriptionsList.classList.remove("ipsData--grid");
	subscriptionsList.classList.add("ipsData--table");
})();
  • Author
5 hours ago, Ehren said:

You can make the subscription occupy the entire width using CSS, however I'm not entirely sure that looks any better:

.ipsData--subscriptions{
	--i-data--max: 1;
}

.ipsData--subscriptions .ipsData__image{
	max-height: 200px;
}

Alternatively, you can change the style to a table (or any other ipsData design) using the following JS:

(function(){
	let subscriptionsList = document.querySelector(".ipsData--subscriptions");
	if(!subscriptionsList) return;
	subscriptionsList.classList.remove("ipsData--grid");
	subscriptionsList.classList.add("ipsData--table");
})();

Thanks @Ehren , that CSS did the trick!

Recently Browsing 0

  • No registered users viewing this page.