Hey,
i want to have the titel of each portfolio listed on the top of the site (Like the heading of a normal site)...is this possible?
insert Titel of Portfolio
6 posts from 2 voices-
Posted 1 year ago #
-
Hey,
try following - in template_portfolio.php replace:
global $k_option, $more;with:
global $k_option, $more; $page_title = get_the_title();and replace:
<div id="main" class='portfolio'> <?phpwith:
<div id="main" class='portfolio'> <h1 class="siteheading"> <?php echo $page_title; ?> </h1> <?phpPosted 1 year ago # -
Thank you!
Its working..but the formating isn't right. Its just the name of the portfolio without any css. Is it possible to get a style like a normal page?Posted 1 year ago # -
Hey,
I adjusted the code above a bit. Please try it again.Posted 1 year ago # -
The align of the Siteheading is still not right....its aligned on the left side of the site. Can you fix it?
Posted 1 year ago # -
Please try following code:
<div id="main" class='portfolio'> <h1 class="siteheading" style="float:right;"> <?php echo $page_title; ?> </h1> <?phpPosted 1 year ago #
Reply
You must log in to post.














