Is there a WP plugin for this?

jaredwins

Junior Member
Joined
Aug 13, 2013
Messages
143
Reaction score
97
Hey BHW,

I stumbled across an Amazon product review niche site, and was trying to take some tips that I could apply to my own niche site (in a different niche)...

The owner has a really clean way of displaying the image, title, and features of product. I'm fairly new to Wordpress, so I wanted to know if they are doing this using a plugin, or handcoding the HTML.

If someone could point me in the right direction for reverse-engineering this, I would appreciate it :)

I don't want to "out" anyone's site, but here's an edited image of how the Amazon image products are displayed:

buwUwhR

Any help is appreciated! Oh, and if this is your site, I apologize in advance and am more than happy to remove this thread to protect your hard work.
 
You might be able to use a page builder plugin or hire a freelancer to create a template.

Another option would be to go back to the site that inspired you and run the page with the amazon widget you like through builtwith.com or the builtwith plugin. You can check the Widgets info and it should list what plugins the site is using.
 
Use some basic css?

Code:
.box{
border:1px solid orange;
padding: 1em;
}

.box h1{
 color:#FFF;
padding:1em;
}

.box .keyfeatures{
color:green;
font-weight:boldl;
}

.box a.buybutton{
border:1px solid red;
background-color:orange;
border-radius:1px;
display:block;
margin:0 auto;
color:#FFF;
font-weight:strong;
}
 
Have you tried checking the website on what wp theme is that?

It will tell you which theme and plugin has been used.
 
Use some basic css?

Code:
.box{
border:1px solid orange;
padding: 1em;
}

.box h1{
 color:#FFF;
padding:1em;
}

.box .keyfeatures{
color:green;
font-weight:boldl;
}

.box a.buybutton{
border:1px solid red;
background-color:orange;
border-radius:1px;
display:block;
margin:0 auto;
color:#FFF;
font-weight:strong;
}

This was the solution I ended up doing! I finally broke down and just wrote the CSS. I just didn't know if there was a plugin to make life simpler.
Thanks for the help.
 
Back
Top