How do you alter appearance of links to detail pages
3 posts by 3 authors in: Forums > CMS Builder
Last Post: December 30, 2008 (RSS)
By JeffC - December 1, 2008
Hi
Is is possible to alter the appearance of links from a news list page to a news detail page. For example this is a link below:
Read more: newsDetail.php?Brixham-Church-launches-new-website-1
I would like it to read
Read more: Brixham Church launches new site
Thanks
Jeff
Is is possible to alter the appearance of links from a news list page to a news detail page. For example this is a link below:
Read more: newsDetail.php?Brixham-Church-launches-new-website-1
I would like it to read
Read more: Brixham Church launches new site
Thanks
Jeff
Jeff
Re: [Jeffie] How do you alter appearance of links to detail pages
By Dave - December 1, 2008
Hi Jeff,
Your code probably looks like this:
Read More: <a href="<?php echo $record['_link'] ?>"><?php echo $record['_link'] ?></a><br/>
Change it to look like this:
Read More: <a href="<?php echo $record['_link'] ?>"><?php echo $record['title'] ?></a><br/>
If that doesn't work post the code that generates your link and we'll take a look.
Hope that helps!
Your code probably looks like this:
Read More: <a href="<?php echo $record['_link'] ?>"><?php echo $record['_link'] ?></a><br/>
Change it to look like this:
Read More: <a href="<?php echo $record['_link'] ?>"><?php echo $record['title'] ?></a><br/>
If that doesn't work post the code that generates your link and we'll take a look.
Hope that helps!
Dave Edis - Senior Developer
interactivetools.com
interactivetools.com
Re: [Dave] How do you alter appearance of links to detail pages
By sublmnl - December 30, 2008
worked like a charm for me.
just the post I was looking for to make the titles into links.
Thank you
just the post I was looking for to make the titles into links.
Thank you