I'm trying to figure out how to remove the borders for entries using the Connections plug-in. I'm using the default "Profile" template. The page I'm working on is at http://salonenvyokc.com/wordpress/?page_id=7. Any help is appreciated.
I'm trying to figure out how to remove the borders for entries using the Connections plug-in. I'm using the default "Profile" template. The page I'm working on is at http://salonenvyokc.com/wordpress/?page_id=7. Any help is appreciated.
Try adding:
#content .cn-entry {
border: none !important;
}
on the bottom of your theme's stylesheet.
OK, I'm just starting out with code, so bear with me. I'm assuming you're referring to the WordPress theme, as opposed to the plug-in itself? I added it to style.css and nothing happened.
Yes - I meant your theme's stylesheet. And it should work (it did for me using Firebug).
Switched 2010 Weaver theme and added it, works great for the content! Thanks, now I've got to figure out how to remove the border from the pictures!
This should remove it from the images...
#content div.cn-entry img.photo {
border: none !important;
}Awesome! Thanks so much Steve.
This topic has been closed to new replies.