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)

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!
Dave Edis - Senior Developer
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