Title: jamiew's Replies | WordPress.org

---

# jamiew

  [  ](https://wordpress.org/support/users/jamiew/)

 *   [Profile](https://wordpress.org/support/users/jamiew/)
 *   [Topics Started](https://wordpress.org/support/users/jamiew/topics/)
 *   [Replies Created](https://wordpress.org/support/users/jamiew/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/jamiew/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/jamiew/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/jamiew/engagements/)
 *   [Favorites](https://wordpress.org/support/users/jamiew/favorites/)

 Search replies:

## Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Image Borders with Rounded Corners](https://wordpress.org/support/topic/image-borders-with-rounded-corners/)
 *  [jamiew](https://wordpress.org/support/users/jamiew/)
 * (@jamiew)
 * [20 years ago](https://wordpress.org/support/topic/image-borders-with-rounded-corners/#post-378732)
 * There’s a lot of questions in here, let me tackle one or two. First the simple
   part. To do what they do on lifehacker, you would edit your style.css file (in
   wp-content/themes/default) and add a line that looks something like this:
 * `#content img {border: 5px solid #ddd; margin: 0 10px 5px 0; -moz-border-radius:
   7px;}`
 * What this will do is anytime there is an image in your post (the `img` tag) it
   will add a 5 pixel gray border, put some padding on the right and bottom, and
   then round the corners 7 pixels. That’s it, no html to add, no nothing else.
 * That said, the rounded corners will only work in Firefox and other Mozilla browsers.
   IE has no support for such a thing. It’s possible to do, but it’s MUCH more complicated
   to do that the above. Google shows many hacks available: [css rounded corners](http://www.google.com/search?q=css+rounded+corners&start=0&ie=utf-8&oe=utf-8&client=firefox-a&rls=org.mozilla:en-US:official).
   BTW, I lifted the code for this on the site I’m working on [right now](http://www.securitywonk.com)
   straight from lifehacker.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Blogging via Email](https://wordpress.org/support/topic/blogging-via-email/)
 *  [jamiew](https://wordpress.org/support/users/jamiew/)
 * (@jamiew)
 * [20 years, 10 months ago](https://wordpress.org/support/topic/blogging-via-email/page/2/#post-61869)
 * I could never get the orginal wp-mail to work right. This replacement worked 
   like a champ for me: [http://www.economysizegeek.com/?p=421](http://www.economysizegeek.com/?p=421)
 * My goal was to be able to blog via email from my Blackberry. And to the, “Why
   would you want to do that?” question… My wife delivered our 2nd child 3 weeks
   ago, and using my blackberry/blog combo, I was able to give regular status reports
   to friends and family without leaving my wife’s side.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Links within Pages](https://wordpress.org/support/topic/links-within-pages/)
 *  Thread Starter [jamiew](https://wordpress.org/support/users/jamiew/)
 * (@jamiew)
 * [20 years, 10 months ago](https://wordpress.org/support/topic/links-within-pages/#post-229131)
 * Well I figured it out. The key was the PHPExec Plugin: [http://priyadi.net/archives/2005/03/02/wordpress-php-exec-plugin/](http://priyadi.net/archives/2005/03/02/wordpress-php-exec-plugin/)
 * Here’s the exact code that makes it work once you install the plugin:
 * `<strong>Family</strong>`
 * `<ul>
    <phpcode><br /> <?php get_links(3); ?><br /> </phpcode></ul>
 * In action: [http://www.jamieandholly.com/links](http://www.jamieandholly.com/links)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Links within Pages](https://wordpress.org/support/topic/links-within-pages/)
 *  Thread Starter [jamiew](https://wordpress.org/support/users/jamiew/)
 * (@jamiew)
 * [20 years, 10 months ago](https://wordpress.org/support/topic/links-within-pages/#post-229130)
 * Sorry my links were bad. I missed one letter in my URL. The should have been:
   
   Website: [http://www.jamieandholly.com](http://www.jamieandholly.com) Links Page:
   [http://www.jamieandholly.com/links](http://www.jamieandholly.com/links) Recipes
   Page: [http://www.jamieandholly.com/recipes](http://www.jamieandholly.com/recipes)
 * The goal is to be able to display a series of links, based on categories, within
   the main section of the page. For instance if my categories are Baseball, Basketball,
   and Football, I can build a page in WP called “Favorite Teams” that would have
   this content:
    <Strong>Baseball <contents of category of Baseball links> Basketball
   <contents of category of Basketball links> Football <contents of category of 
   Football links>
 * The goal being that when I get a new favorite team (in this example) I can simply
   add a link to that category and it is dymnamically added to that page.
 * So no, I am not trying to get links to show up the front page, I am trying to
   get them to build into a certain page. And yes, I have spent hours in the codex
   trying to find how to do this. Any other help?

Viewing 4 replies - 1 through 4 (of 4 total)