Forum Replies Created
-
AuthorPosts
-
Hi,
Sorry, I don’t understand what “voices” means, and I can’t match your screenshot to your site.
Perhaps a larger screenshot that shows context and points out how you would like to see your site.Best regards,
MikeHi,
I added this code to the end of your functions.php file in Appearance > Editor://* Changing excerpt more - only works where excerpt IS hand-crafted function manual_excerpt_more( $excerpt ) { $excerpt_more = ''; if( has_excerpt() ) { $excerpt_more = ' <a href="' . get_permalink() . '" rel="nofollow">[Read more]</a>'; } return $excerpt . $excerpt_more; } add_filter( 'get_the_excerpt', 'manual_excerpt_more' );
Please review.
Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.Best regards,
MikeHi,
When you say that it is correct after scrolling down, is this because the transparent header is not transparent anymore?
Can you please add a screenshot to point out how you would like to see it?Best regards,
MikeHi,
I re-wrote it so it will not change mobile view:
Scale by 40 for Tablet:
and scale by 55 for everything above:
@media only screen and (min-width: 844px) { div.g-recaptcha {transform:scale(0.55)!important; -webkit-transform:scale(0.55)!important; transform-origin:0 0;-webkit-transform-origin:0 0;}} @media only screen and (min-width: 768px) and (max-width: 843px) { div.g-recaptcha {transform:scale(0.40)!important; -webkit-transform:scale(0.40)!important; transform-origin:0 0;-webkit-transform-origin:0 0;}}
One of the issues with this plugin is that it is pulled in as a iframe so it may be hard for your css to control it depending when the iframe is loaded. Perhaps a better solution would be to allow your contact form to have 1/2 of the page instead of 1/4, you could put the “Thank you” paragraph below the contact form.
Best regards,
MikeHi,
I added this code to the end of your functions.php file in Appearance > Editor:// Force manual except for default editor add_filter( 'the_content', 'replace_content_with_excerpt', 100 ); function replace_content_with_excerpt( $content ) { if ( is_singular() ) { return $content; } remove_filter( 'the_content', __FUNCTION__, 100 ); $excerpt = apply_filters( 'the_excerpt', get_the_excerpt() ); add_filter( 'the_content', __FUNCTION__, 100 ); return $excerpt; }
Look for the excerpt box under your post in editor, if you don’t see it look at the very top of your page for “Screen Options” and check the excerpt box.
Best regards,
MikeHey erwin_m,
Try:h2.post-title.entry-title::after { content:url(https://mydomain.nl/wordpress/wp-content/themes/enfold-child/images/rule.jpg)!important;height:auto;margin-bottom:0px!important; }
Best regards,
MikeHi,
Try this code in the General Styling > Quick CSS field:.avia-builder-el-17 .avia_textblock {padding-bottom: 0px !important; } .avia-builder-el-21 {margin-top: 0px !important; }
Best regards,
MikeHi,
I added !important; to Ismael’s code and added some to make the check box larger, and it seems to be working.
Please clear your cache and review.#element_avia_2_1 { float: left!important; clear: none!important; width: auto!important; top: -10px!important; -ms-transform: scale(2); /* IE */ -moz-transform: scale(2); /* FF */ -webkit-transform: scale(2); /* Safari and Chrome */ -o-transform: scale(2); /* Opera */ } .acknowledge + p { width: auto!important; float: right!important; margin-top: -25px!important; }
Best regards,
MikeHi,
Perhaps I don’t understand the question correctly, but have you tried adding a custom menu and then using the custom menu widget in the page sidebar area, then you can add additional widgets below it?Best regards,
MikeHi,
Try this code in the General Styling > Quick CSS field:#menu-item-search.menu-item-search-mod {margin-top: 20px !important; }
Best regards,
MikeHey stewroids,
To build a landing page use the Template: “Blank – No Header, no Footer” and No Sidebars.
To collect email address you can use the contact form element and save the emails that are sent to you or the Mailchimp Signup element and have them sign up in your Mailchimp account, or use a plugin such as Easy Sign UpBest regards,
MikeOctober 7, 2017 at 8:25 pm in reply to: Mobile View: the logo and menu icons are overlapping #861430Hi,
Glad we were able to help, we will close this now. Thank you for using Enfold.Best regards,
MikeHi,
The LayerSlider that comes with Enfold is a bundled version that the Layer Slider team has provided, which they have disabled a few premium features. Should you wish to use the premium features you can simply purchase a copy of the layerslider on codecanyon, upload it as a plugin and activate it. It will then overwrite the bundled version, and then you are in full control of LayerSlider updates and premium features.
There is no need to deactivate the bundled version, it automatically detects if the plugin version is active and disables itself.
To fix your slide timing, open your slider and change the “Slide Timing” to something like 7000
Read more here: https://support.kreaturamedia.com/docs/layersliderwp/documentation.html#slider-builderBest regards,
MikeHi,
I have used the debug mode to copy your page to a clean install and the video showed fine, this leads me to believe you have a plugin conflict, Try disabling your plugins. If that resolves the issue, reactivate each one individually until you find the cause.Best regards,
MikeOctober 7, 2017 at 7:08 pm in reply to: Mobile View: the logo and menu icons are overlapping #861413Hi,
I changed your code to this:@media only screen and (max-width: 426px){ .responsive #top #wrap_all .logo a > img {width: 183px !important;} .responsive #top #wrap_all .main_menu {right: -50px!important; }}
it seems to be working on all pages now, please check.
Best regards,
MikeHey Darren,
When checking your contact page, I only see the recaptcha size issue in tablet mode (768px) so try this code in the General Styling > Quick CSS field to target just that size:@media screen and (max-height: 769px){ #rc-imageselect, .g-recaptcha {transform:scale(0.77);-webkit-transform:scale(0.77);transform-origin:0 0;-webkit-transform-origin:0 0;} }
Please clear your cache and review.
Best regards,
MikeHey Darren,
I went to your contact page, but didn’t get that error in the console, how can I reproduce the error?Best regards,
MikeHi,
Please include the url to the page in question so we can take a closer look.Best regards,
MikeHey HendyZone,
Here is an example css for your site:.postid-2338 td.avia-center-col:nth-child(1) {background-color: red !important;} .postid-2338 td.avia-center-col:nth-child(2) {background-color: yellow !important;} .postid-2338 td.avia-center-col:nth-child(3) {background-color: blue !important;}
You can change the colors to suit, and change the postid for each page or post if you use several different tables, but this will effect all tables on the same page.Best regards,
MikeOctober 7, 2017 at 5:18 pm in reply to: Mobile View: the logo and menu icons are overlapping #861396Hi,
I added the above code and flushed your site cache, Please clear your browser cache and review
Best regards,
MikeHey Sigmund,
The category links to a archive page that displays all posts in that category, are you asking to have a shorter url to the same page without the “/category/”? Can I ask what purpose this would achieve?Best regards,
MikeHi,
Try using a code block element instead of a text block element.Best regards,
MikeHi,
Try:@media only screen and (max-width: 426px) { div#archi-workshop- { background-image: none!important; } }
Best regards,
MikeHi,
It looks like you have this custom css controlling the height:/* fine */ #top #header_main > .container, #top #header_main > .container .main_menu ul > li > a, #top #header_main #menu-item-shop .cart_dropdown_link { height: 100px !important; line-height: 80px !important; position: relative; }
Can you please add a screenshot to point out how you would like to see it?
Best regards,
MikeOctober 7, 2017 at 3:53 pm in reply to: Mobile View: the logo and menu icons are overlapping #861379Hi,
To move the items to the right try this code in the General Styling > Quick CSS field:@media only screen and (max-width: 480px) {.responsive #top #wrap_all .main_menu {right: -50px!important; } }
Best regards,
MikeHey mrjohnson2,
It could be due to the multiple requests, although I reloaded your page several times with no issues, so I can’t really point to one cause or another.Best regards,
MikeHey mgyura,
Please try to flush the cache, are you using minfication? If yes, you might want to disable that and enable later.
Try disabling your other plugins. If that resolves the issue, reactivate each one individually until you find the cause.Best regards,
MikeOctober 1, 2017 at 10:57 pm in reply to: How to remove Fullscreen Slider Text Black Transparent Background #859024 -
AuthorPosts