With the Advanced Featured Post Widget you can put a certain post (or post type) in the focus and style it differently.
The Advanced Featured Post Widget does, what the Featured Post Widget is doing also; it’s a customizable multi-widget, that displays a single post in the widget area. You can decide, whether or not the post thumbnail is displayed, whether the post title is above or beneath the thumbnail and a couple of more things. And of course, you can style the widget individually.
So far that is the same as my Featured Post Widget does also. Not every theme has the possibility to hide certain sidebars on different pages. That’s where the advanced of our plugin comes in. In the AFPW you can determine, where exactly the widget is showing and in the settings you can customize the links of your widget(s).
advanced-featured-post
folder to the /wp-content/plugins/
directoryLook at the source code of your site. If it says at one point,
‘Advanced Featured Post Widget is not setup for this view.’
you can change the visibility of the widget in the widget’s settings according to your choices.
I’m terribly sorry that this seems to happen with a couple of updates. The Advanced Featured Post Widget seems to really block the widgets.php from further loading. There was a big mixup while updating the plugin. With version 2.6 this should not happen anymore.
The styling of the widget requires some knowledge of css. If you are not familiar with that, try adding
padding: 10px; margin-bottom: 10px;
to the style section.
Add something like
-webkit-border-top-left-radius: 5px; -webkit-border-top-right-radius: 5px; -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px;
to the widget style. This is not supported by all browsers yet, but should work in almost all of them.
Add something like
-moz-box-shadow: 10px 10px 5px #888888; -webkit-box-shadow: 10px 10px 5px #888888; box-shadow: 10px 10px 5px #888888;
to the widget style to get a nice shadow down right of the container. This is not supported by all browsers yet, but should work in almost all of them.
Most of the time you will have to use the styles like that:
‘font-weight: bold !important;
color: #0000dd !important;’
Since the stylesheet of the theme will have a higher priority, you will have to make your styles more important in the hierarchy.