This topic is: resolved
- This topic has 13 replies, 3 voices, and was last updated 12 years, 1 month ago by .
You cannot reply to this support topic. Please open your own support topic.
The Support Forum is closed. Not to worry! Providing the top quality support you expect and we're known for will continue! We're not ending support, just changing where you submit requests. This will provide you with the best experience possible.
Premium Support
Have you purchased an addon for Connections such as one of our premium templates or extensions with a valid license and you need help?
Please open a Support Ticket in your user account.
Free Support
Are you using the free Connections plugin? Don't worry, you are still very important to us! We are still providing you with the same high quality support that we're known for.
Please open a new support topic in the WordPress support forums for Connections.
Tagged: 0.8.12, css, theme, Upcoming Birthday, widget, widget pack
Please also see this post I created today, new issue on the same site.
http://connections-pro.com/support/topic/tileplus-details-not-showing/
@ Martin
The reason for the widget not being aligned is because the theme uses specific CSS styles for its widgets so they will not be properly applied to third-party widgets. You’ll have to edit the theme’s style.css file.
Find this:
.footer-area .widget_recent_entries li {
border-bottom: 1px solid;
padding-bottom: 12px;
}
.footer-area .widget_recent_entries a {
border-bottom: 0;
padding-bottom: 0;
}
Change it to this:
.footer-area .widget_recent_entries li,
.footer-area .widget_cnw_upcoming_birthdays li {
border-bottom: 1px solid;
padding-bottom: 12px;
}
.footer-area .widget_recent_entries a,
.footer-area .widget_cnw_upcoming_birthdays a {
border-bottom: 0;
padding-bottom: 0;
}
.footer-area .widget_recent_entries li,
.footer-area .widget_cnw_upcoming_birthdays li {
border-color: #505152;
}
Now, the links on the widget seem to work fine. I’m guessing the update to Connections may have addressed that.
@ Martin
Oppps, there is one more change, this needs to be added:
.footer-area .footer-widget-col > ul > li:first-child > span > a {
background-image: none;
padding-top: 0px;
}
You don’t need to do any editing now … I saw the theme had a custom CSS area in its options so I added this code. All is good now.
You cannot reply to this support topic. Please open your own support topic.
