Is it possible to disable portfolio title links?
Portfolio title hyperlink
10 posts from 3 voices-
Posted 6 months ago #
-
Yes, open up eunoia\includes\loop-portfolio.php and replace following code:
echo avia_title(array('class'=>'portfolio-title', 'html' => "<div class='{class} title_container'><h1 class='main-title'>{title}</h1></div>"), $the_id);with:
echo '<div class="portfolio-title title_container"><h1 class="main-title">'.get_the_title().'</h1></div>';Posted 6 months ago # -
I'm sorry, I was referring to the titles permelinks that display after clicking on portfolio titles.
Posted 6 months ago # -
Hi O5,
You'll need to open functions-eunoia.php and search for:
echo avia_title(array('class'=>'portfolio-title', 'html' => "<div class='{class} title_container'><h1 class='main-title'>{title}</h1></div>"), $id);and replace it with:
echo avia_title(array('class'=>'portfolio-title', 'link'=> false , 'html' => "<div class='{class} title_container'><h1 class='main-title'>{title}</h1></div>"), $id);Regards,
Devin
Posted 6 months ago # -
Hello,
Is it possible to change font size of title. Some title seem to crop on iPad. I'm speaking of the title that displays after you select portfolio image.
Thx
Posted 5 months ago # -
Hey!
Yes - you can use following css code:
.portfolio_container_content .title_container h1 { font-size: 54px; }Obviously you can change the font size value as you like.
Best regards,
PeterPosted 5 months ago # -
Hi
That did the trick. One other question, is it possible to target font color of hovered portfolio title, so that when you hover item the title font color changes? These are the titles that display when you hover over item and see orange background. I'm speaking of the page that shows all portfolio items, like the demo home screen.
Thx
Posted 5 months ago # -
Hey!
You can try following css code:
.portfolio-title.title_container:hover{ color: #333 !important; }Best regards,
PeterPosted 5 months ago # -
Hey
That didn't work. Any ideas how to ?
Thx
Posted 5 months ago # -
Hey!
Maybe we need to be more specific - try following code instead:
.portfolio-title.title_container h1.main-title:hover{ color: #333 !important; }Best regards,
PeterPosted 5 months ago #
Reply
You must log in to post.














