Article Title Appears Below Read More On Category Blog Page - Question | JoomShaper

Article Title Appears Below Read More On Category Blog Page

GS

Gurdip Singh

Helix Framework 8 months ago

Hi, My site is built on:

  • Joomla 5.2.3
  • Helix framework
  • SP Page Builder
  • Nestfund template

I wrote to Support via email and they think it's a techincal issue, and to post in the forum here.

Issue: On my Blog page, the Title Header of the articles appear at the end, below the Read More. I would like to have it at the top, in this order: Article Header, Article Intro Image, Article Introtext, and finally followed by Read more.

Using your documentation's Customization Tips, I was able to fix the order for the single page articles by using the following CSS (by Paul Frankowski: https://www.joomshaper.com/supports/forums/question/10812). and updating the default.php file:

/ for articles list / .view-article .article-details {display: grid;} .view-article .article-details .article-header {order: -1;} .view-article .article-details .article-full-image {order: -1;margin-bottom:30px;} .view-article .article-details .article-info {order: 3;} .article-details .article-ratings-social-share {order: 4;}

However, I was not able to figure out the CSS for the category blog page.

0
3 Answers
Ziaul Kabir
Ziaul Kabir
Accepted Answer
Support Agent 8 months ago #185175

Hello Gurdip,

Thanks for reaching out to us. I have attached a screenshot, please check it. Our Nestfund template is designed this way. If you need customization, you may need to hire a developer, as we do not provide customization services.

If this design works for you, you can use the following custom CSS in your custom CSS file.

.article-list .article .article-body {
    flex-direction: column !important;
}

Thanks for your understanding.

Best regards,

0
GS
Gurdip Singh
Accepted Answer
8 months ago #185211

Thank you. Your CSS fixed the issue.

0
Ziaul Kabir
Ziaul Kabir
Accepted Answer
Support Agent 8 months ago #185233

You are welcome.

0