Display Bug still in Eaterstop Lite 2.6 that has to be fixed manually on each update.
There is an additional > displayed after the content in full-width pages.
Fix is to remove the additional > in line 30 in full-width.php:
The code in line 30:
</div><!-- entry-content -->>
should be changed to this:
</div><!-- entry-content -->
]]>
I have added a photo to my static front page, but I want to change the size. How do I do this?
]]>Hello,
This theme doesn’t properly configure the sidebar before_widget
and after_widget
parameters for compatibility with plugins like Widget CSS Classes and Genesis Widget Column Classes.
functions.php:
register_sidebar( array(
'name' => __( 'Blog Sidebar', 'eaterstop-lite' ),
'description' => __( 'Appears on blog page sidebar', 'eaterstop-lite' ),
'id' => 'sidebar-1',
'before_widget' => '',
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3><aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
) );
Should be:
register_sidebar( array(
'name' => __( 'Blog Sidebar', 'eaterstop-lite' ),
'description' => __( 'Appears on blog page sidebar', 'eaterstop-lite' ),
'id' => 'sidebar-1',
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
) );
Regards, Jory
]]>