Hi
You can create a new sidebar from post editor here: http://screencast.com/t/6rPRGcpUgfiV Also you can check our documentation here: https://forum.tagdiv.com/sidebars-tutorial/ It’s from Newspaper theme but it applies and for Newsmag
Thanks!
-
This reply was modified 10 years by
Andrei L..
Thanks Andrei
Quick follow up:
I got it to work, creating new sidebars and I even widgetized some area on main homepage (not sidebar) and used this sidebar to show as RSS feeds.
When doing that, I cant see where to change the titel BG colour. Theres is no block/module to control it in via VP and I cant see it in theme panel. Where can I control the Widgets titel BG colour? (can only find option for footer widget titel BG).
And could You please tell me, why RSS feeds titels are shown inside “”..?
Thank You
Hi
You can change the background-color for blocks tiles from sidebar under Appearance > Widgets: http://screencast.com/t/PCHOUCbArX – http://screencast.com/t/wrYQ0tkM3KWi
Regarding the feeds system, the theme uses the one built in from WordPress and don’t affect its functionality.
If this is not what you mean please provide more details.
Thanks!
Hi
The default widgets from WordPress don’t have options to change the background-color for theirs tiles, you have to apply some css code to achieve that. If you want the same color for all widgets use this css:
.widget .block-title > span{
background-color: #f4524d;
}
If you want different colors depending by the widget follow this example to get the widget’s class in order to target it’s title: http://screencast.com/t/Ac4FV8Vr
.widget_recent_entries .block-title > span{
background-color: #f4524d;
}
Hope this help.
Thanks!