Forum Replies Created
-
AuthorPosts
-
andrearicchiwebMember
Ciao Victor, I put the file into themes/altitude-pro/favicon.ico
that's not ok?
February 23, 2016 at 9:17 am in reply to: How to change the background-color only in footer widget text in Altitude pro? #179714andrearicchiwebMemberThanks so much!
andrearicchiwebMemberAny help???
andrearicchiwebMemberFor sure Victor: http://www.yourtourleader.com/
February 11, 2016 at 4:54 am in reply to: Images or gallery in front page of Altitude Pro theme #178780andrearicchiwebMemberPerfect! Thanks Christoph!
andrearicchiwebMemberThanks for your reply Victor, this part do you mean:
/* WordPress --------------------------------------------- */ .alignleft { float: left; text-align: left; } .alignright { float: right; text-align: right; } a.alignleft, a.alignnone, a.alignright { max-width: 100%; } a.alignnone { display: inline-block; } a.aligncenter img { display: block; margin: 0 auto; } img.centered, .aligncenter { display: block; margin: 0 auto 24px; } img.alignnone, .alignnone { margin: 0 0 12px; } a.alignleft, img.alignleft, .wp-caption.alignleft { margin: 0 24px 24px 0; } a.alignright, img.alignright, .wp-caption.alignright { margin: 0 0 24px 24px; } .wp-caption-text { font-size: 18px; line-height: 1.2; text-align: center; } .entry-content p.wp-caption-text { margin-bottom: 0; } .gallery-caption, .entry-content .gallery-caption { margin: 0 0 10px; } .post-password-form input { width: auto; } .post-password-form input[type="submit"] { padding: 25px; } .wp-audio-shortcode, .wp-playlist, .wp-video { margin: 0 0 28px; } /* Widgets ---------------------------------------------------------------------------------------------------- */
andrearicchiwebMemberThanks so much Christoph! Now it works, just a cache problem 😉
andrearicchiwebMemberthis is a problem about css, if you see the website the text "Discovering Modena and Bologna...." is a text widget, i would like the background white by css, but by trying many class, it doesn't work, the only solution is insert into the widget the text with the code, i don't like this solution because i want find the way by css file, what's wrong?
andrearicchiwebMemberThanks so much Christoph, just one more thing, about this?
I am checking also the box where you see “Discovering Modena and Bologna”, I try to change the css in syle.css but it seems the application don’t read my modify, but maybe it’s another problemandrearicchiwebMemberI did Christoph, right now it works! it would be a refresh problem but I cleared any caching by WP Fastest Cache and browser setting and I didn't see no variations, what am i missing?
andrearicchiwebMemberThanks for your reply Christoph!
I have made all steps you told me but nothing change, this is the website: http://www.yourtourleader.com/I am checking also the box where you see "Discovering Modena and Bologna", I try to change the css in syle.css but it seems the application don't read my modify, but maybe it's another problem
Wait for some ideas
andrearicchiwebMemberthis is global.js
jQuery(function( $ ){ if( $( document ).scrollTop() > 0 ){ $( '.site-header' ).addClass( 'dark' ); } // Add opacity class to site header $( document ).on('scroll', function(){ if ( $( document ).scrollTop() > 0 ){ $( '.site-header' ).addClass( 'dark' ); } else { $( '.site-header' ).removeClass( 'dark' ); } }); $( '.nav-primary .genesis-nav-menu, .nav-secondary .genesis-nav-menu' ).addClass( 'responsive-menu' ).before('<div class="responsive-menu-icon"></div>'); $( '.responsive-menu-icon' ).click(function(){ $(this).next( '.nav-primary .genesis-nav-menu, .nav-secondary .genesis-nav-menu' ).slideToggle(); });
i have comment from 3 to 18 line
/* if( $( document ).scrollTop() > 0 ){ $( '.site-header' ).addClass( 'dark' ); } // Add opacity class to site header $( document ).on('scroll', function(){ if ( $( document ).scrollTop() > 0 ){ $( '.site-header' ).addClass( 'dark' ); } else { $( '.site-header' ).removeClass( 'dark' ); } }); */
and in functions.php I insert in the top page
//* Add class dark to .site-header add_filter( 'genesis_attr_site-header', 'altitude_add_class' ); function altitude_add_class( $attributes ) { $attributes['class'] = $attributes['class']. ' dark'; return $attributes; }
but doesn't work! All looks the same
-
AuthorPosts