Forum Replies Created
-
AuthorPosts
-
malko
ParticipantI couldn't find the header scripts because the theme translation is not very accurate.
Problem solved. Thanks for your help.
malko
ParticipantThanks for your reply.
That's the
point, there isn't header scripts on monochrome pro.January 6, 2021 at 11:43 am in reply to: Title logo resizing/rescaling problems in Monochrome Pro #502509malko
ParticipantI have the same problem. Hope someone could help.
malko
ParticipantThanks for your reply. I'm working on this website http://shop.pistolpocket.it/
On this widget, the green one, I will put some text or some background image.
If not possible to have an edge to edge widget in that position, I think I will have to find another theme.
malko
ParticipantI found the hook, genesis_after_home-middle_widget_area, but is actually not working with code above.
I find really disappointing that there is not a single Genesis theme that has a full width (edge to edge) widget area between other widget areas.
Even more disappointing that no one can help.
malko
ParticipantDevi trovare, nel file CSS del tuo tema, il codice in basso. Una volta trovato cambia il valore del margin-bottom a 0. Vedi in basso.
Se pensi che con 0 siano troppo vicini, aumenta a 10 e così via./* Entry Misc.
--------------------------------------------- */.after-entry,
.archive-description,
.author-box,
.comment-respond,
.entry,
.entry-comments,
.entry-pings {
margin-bottom: 0;
}malko
ParticipantOr, is there any hook I could use in the Anita's code below, that let me put a new full-width widget area wherever I want between home-top, home-middle etc?
//* Add a full width widget area before footer widgets in Magazine Pro
genesis_register_sidebar( array(
'id' => 'before-footer-widgets',
'name' => __( 'Before Footer Widgets', 'genesis' ),
'description' => __( 'This is the before footer widget.', 'themename' ),
) );
add_action( 'genesis_before_footer', 'c8d_before_footer_widget', 3 );
function c8d_before_footer_widget() {
genesis_widget_area( 'before-footer-widgets', array(
'before' => '<div class="before-footer-widgets widget-area">',
'after' => '</div>',
) );
}malko
ParticipantI try changing a bit my question. In magazine pro, is there any way to bypass the .site-inner 1140px max-width in only one widget?
malko
ParticipantThanks Anita. It works perfectly.
-
AuthorPosts