@swcomm, i have the same problem.
Do you find a way to align the headlines of the standard WP widgets?
Thread Starter
swcomm
(@swcomm)
Hi – I created a second instance of an About Us widget, as I ended up only needing to add one page. To override the 2-col in that widget, I used some css to target that second widget’s id. So:
#himalayas_about_us_widget-2 .tg-column-wrapper {
/* you may not need this one at all */
margin-left: -7%;
margin-right: 0;
}
#himalayas_about_us_widget-2 .tg-column-2 {
width: 100%!important;
}
#himalayas_about_us_widget-2 .about-title {
/*this hid the page’s title, so I could use the widget title only*/
display: none !important;
}
Hope that helps –