Are you enjoying the extensions? Did you like the support? Help others decide.

Leave a review

file Read more link under all articles

More
8 years 11 months ago #4169 by gavinhanly
Read more link under all articles was created by gavinhanly
Hi - I have a configuration question. Is it possible to put just one "read more" link under all the articles in a "latest news" module that links to the category in question? E.g. show 5 reviews and then a link to "read more reviews" that would link to the page in question?

I can't work out a way to do this other than adding another HTML module underneath (which won't work well on y template). Any suggestions would be great. Thanks.

Please Log in or Create an account to join the conversation.

More
8 years 11 months ago #4171 by admin
Replied by admin on topic Read more link under all articles
Hello,

it is possible to do this with the module ONLY IF the module represents one category. In that case, you can use the 'consolidate categories' option (in version 1.5, under 'basic options' tab - in version 2 under the 'configuration options' tab). That way, it will only show one link (that you can label as you wish) for all.

Olivier.

Please Log in or Create an account to join the conversation.

More
8 years 11 months ago #4172 by gavinhanly
Replied by gavinhanly on topic Read more link under all articles
Hi - I've tried that - and it's definitely a step in the right direction - however it puts the link at the top of the section - not the bottom. Is there any way of changing that?

If you are adding features, being able to hardcode a "more like this" link at the bottom of the module would really be appreciated too.

Please Log in or Create an account to join the conversation.

More
8 years 11 months ago #4173 by admin
Replied by admin on topic Read more link under all articles
I believe a quick and easy CSS addition can provide that.

.lnee .onecatlink {
bottom: 0;
position: absolute;
}

You may need to adjust it to your liking.

Olivier.

Please Log in or Create an account to join the conversation.

More
8 years 11 months ago #4174 by gavinhanly
Replied by gavinhanly on topic Read more link under all articles
Almost... It now overwrites the text (see the Test Drive) section on the homepage here:

www.hot-dinners.com/

Are you aware of anything which will give it the space it needs (padding has no effect because of the absolute code).

Please Log in or Create an account to join the conversation.

More
8 years 11 months ago #4176 by admin
Replied by admin on topic Read more link under all articles
Cool!
Just add a padding-bottom to the ul containing the list of items, that should do the trick.

#lnee_281 ul.latestnews-items { padding-bottom: 30px; }

Olivier.

Please Log in or Create an account to join the conversation.