youtube32
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [GeneratePress] Generatepress Mobile Menu DisappearI understand my problem now. At my country other store only show icon (three dashes) when go to mobile interface . They don’t show any text behind that icon. I think i just hide that text show it will perfect.
Anyone want hide “menu” on mobile interface like me . Just add this to function.php like Tom share.add_filter( 'generate_mobile_menu_label', function() { return ''; } );Forum: Themes and Templates
In reply to: [GeneratePress] Generatepress Mobile Menu DisappearSo sad it look so bad =.= So don’t have any solution for this.(horizontally only text Menu) Ex https://imgur.com/SzQWqEr
Someone go through this topic please help me 🙁Forum: Themes and Templates
In reply to: [GeneratePress] Generatepress Mobile Menu DisappearThanks a lot Tom . I like to change Menu Title to “Danh Muc San Pham”. I found on google ( Customizer > Layout > Primary Navigation > Mobile Menu Label).
But unfortunately i don’t have GP Premium.I can inspect at chrome change code
<span class="mobile-menu">Menu</span>
to
<span class="mobile-menu">Danh Muc San Pham</span>
but i don’t how to convert it to Custom CSS. And when i make this change menu text show vertical like image 4. How to change it show up like image 5 make this text full width blue.4 https://i.imgur.com/Qc9TJKm.png
5 https://i.imgur.com/SzQWqEr.png- This reply was modified 6 years, 3 months ago by youtube32.
Forum: Themes and Templates
In reply to: [GeneratePress] How to move Static Page below Left Side BarTo say thank you is not enough. My budget don’t enough to support your premium. Just make some way we can donate for you. Maybe it not much with you but it my heart.
Forum: Themes and Templates
In reply to: [GeneratePress] How to move Static Page below Left Side BarMy website : https://thaonhi.vn/
Forum: Themes and Templates
In reply to: [GeneratePress] How to move Static Page below Left Side BarYou like a Wizard. It work but have still problem with main menu. It does show up to the right.
It corrupt : https://i.imgur.com/XYAuJv9.png
Maybe it show like this https://i.imgur.com/s3COra7.png
Thanks Mr.Tom.
- This reply was modified 6 years, 4 months ago by youtube32.
Forum: Themes and Templates
In reply to: [GeneratePress] How to move Static Page below Left Side BarAfter fill your code with function.php and custom css :
I change Customizing – Layout – Sidebar – Sidebar Layout – Content (no sidebars)
Change width 18% and width 82%. I create one more slide with this code slider-area2add_filter( 'generate_navigation_location', function() { return 'custom'; } ); add_action( 'generate_after_header', function() { ?> <div class="navigation-slider-area grid-container grid-parent"> <div class="gen-sidebar-nav"> <?php generate_navigation_position(); ?> </div> <div class="slider-area"> <?php echo do_shortcode( '[metaslider id="851"]' ); ?> </div> <div class="slider-area2"> <?php echo do_shortcode( '[metaslider id="851"]' ); ?> </div> </div> <?php } );.navigation-slider-area { display: flex; } .navigation-slider-area .gen-sidebar-nav { width: 18%; } .slider-area { width: 82%; }My current https://i.imgur.com/kxGNscS.png
I’m try to moving slider2 down slider1 by change css with.slider-area2 { margin-top:200px; width: 82%; }but it not go full width . Image https://i.imgur.com/Yqo1jfr.png . And menu have little corrupt
My idea https://i.imgur.com/T5fVbvT.pngForum: Themes and Templates
In reply to: [GeneratePress] How to add Search Bar next to LogoIt work like a charm bro. Wow. Many thanks.
/* Make my search bar max-width */
.header-widget,
.header-widget .dgwt-wcas-search-wrapp {
max-width: unset;/* I try not put this into CSS it still work. I’m try to learn more. */
@media (max-width: 600px) {
.inside-header {
flex-wrap: wrap;
}.header-widget {
flex-basis: 100%;
margin-left: 0;
margin-top: 40px;
}Forum: Themes and Templates
In reply to: [GeneratePress] How to add Search Bar next to LogoYep. Here my site https://thaonhi.vn/
Forum: Themes and Templates
In reply to: [GeneratePress] How to add Search Bar next to LogoHi Tom, i’m sorry for slow update.
I did it like you said it work but have a little problem not next to logo.
div class header-widget is Search Bar
div class site-logo is LogoI’m try with custom CSS but it not work:
div.header-widget{
position: relative;
}