my widget seems to be set at 50% of 300px any ideas how i can increase to 100%
thanks in advance
]]>To make the footer widget titles full width, add this
#footer .widget-title {
width: 100%;
}
(you may need to do a similar thing for your sidebar widgets)
then you will need to style the View All link
.geodir_list_heading a {
text-align: left;
width: auto;
}
You may want to add some padding or a margin, but you get the idea…
]]>