Headings in portfolio page #354
-
Hi, Thanks so much for creating such a nice theme! I have very little experience with HTML and liquid. Would be possible to display headings along with the images in the portfolio page? |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments
-
Can you please explain by what you mean? |
Beta Was this translation helpful? Give feedback.
-
You mean...
|
Beta Was this translation helpful? Give feedback.
-
Thanks so much for responding @im-coder-lg and @sylhare. @sylhare, I meant (2.) on the portfolio tile. |
Beta Was this translation helpful? Give feedback.
-
So it's not possible now, maybe I'll think into making it a feature. With something like: <div class="portfolio-grid">
{% for item in site.portfolio %}
<div class="portfolio-cell">
<a class="portfolio-link" data-keyboard="true" href="{{ item.url | relative_url }}">
<div class="caption" title="{{ item.title }}">
<div class="caption-content">
<i>{{ item.title }}</i>
</div>
</div>
<img alt="" class="" src="{{ item.img | relative_url }}">
</a>
</div>
{% endfor %}
</div> The |
Beta Was this translation helpful? Give feedback.
-
Got it. Thanks so much for your response! |
Beta Was this translation helpful? Give feedback.
So it's not possible now, maybe I'll think into making it a feature.
To customize it though it's pretty simple, you just need to update _includes/portfolio.html
With something like:
The
{{ item.ti…