Hi @tomshaw68,
I hope you are well today and thank you for your question.
I visited your shared page but it is displaying “404 Page not found!” error.
Could you please make sure that the shared page is accessible so that I can help you?
Best regards,
Shufflehound team
To add video, you have to select Video post format as shown in the attached screenshot.
There isn’t any responsive setting to increase its size.
You can use Yellow pencil responsive tool to increase its size on mobile as described below.
https://yellowpencil.waspthemes.com/docs/responsive-tool/
If you can’t do this using Yellow pencil editor then to achieve this, you have to develop custom code in the child theme of Jevelin theme.
Developing custom code for custom functionality is beyond the scope of support that we provide here. Please see https://themeforest.net/item/jevelin-multipurpose-premium-responsive-wordpress-theme/14728833/support
If you are not a developer then you can consider hiring a developer to develop it for you. You can hire a developer from any freelance site. Shufflehound recommends the developer https://www.upwork.com/freelancers/~011652ffec8865c6d5
You are always welcome here π
You are most welcome here π
You are most welcome here π
Solution for this topic
Please try changing above shared CSS code as following.
.single-post #content a { color: #ffa500; text-decoration: underline; }
Yes, as said above you can do this by manually editing each post and adding banner image in it.
you see i have a section for vidoe but i have only iamge
I am not sure what you mean by this so could you please describe it a bit more?
Also, could you please share the post URL from your site where it is displaying so that I can troubleshoot it?
Hi @hussen.khamis,
I hope you are well today and thank you for your question.
You can add video in blog post as described on the below pages.
https://www.siteground.com/kb/how_to_embed_a_video_into_a_post_in_wordpress_/
https://www.wpbeginner.com/beginners-guide/how-to-easily-embed-videos-in-wordpress-blog-posts/
https://www.wpexplorer.com/add-video-wordpress/
Best regards,
Shufflehound team
Hi Yatin,
I hope you are well today and thank you for your question.
Your website footer contains too much text causing to increase footer widget area height therefore it is not displaying.
You can either remove that text from the Footer Widgets area section or disable the Footer Parallax from the theme Footer settings as shown in the attached screenshots.
Best regards,
Shufflehound team
Hi Maya,
I hope you are well today and thank you for your question.
You can configure how it should be displayed in your website permalink settings as shown in the attached screenshot.
Best regards,
Shufflehound team
Solution for this topic
The issue is resolved in the below latest version of theme so please update the theme as described here https://support.shufflehound.com/updating-theme/
Please login to access this file
The issue is resolved in the below latest version of theme so please update the theme as described here https://support.shufflehound.com/updating-theme/
Please login to access this file
Hi @Olbe,
I hope you are well today and thank you for your questions.
1. How to add a phone number to the header center?
2. How to add button with a contact form pop-up window?
You can display it in the site topbar by enabling it in the theme Header settings but it is only available for Header Template 2 and 3 as shown in the attached screenshot.
The topbar won’t display for Header 6 Clean (side navigation) template that you are using on your website so to display it, you have to develop custom code in the child theme of Jevelin theme.
Developing custom code for custom functionality is beyond the scope of support that we provide here. Please see https://themeforest.net/item/jevelin-multipurpose-premium-responsive-wordpress-theme/14728833/support
If you are not a developer then you can consider hiring a developer to develop it for you. You can hire a developer from any freelance site. Shufflehound recommends the developer https://www.upwork.com/freelancers/~011652ffec8865c6d5
3. How do I change the color to black for the drop-down menu icon?
You can achieve it by adding the following CSS code in the Custom CSS code option of your theme on the below path.
Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code
#page-container .sh-header-6 .c-hamburger span, #page-container .sh-header-6 .c-hamburger span:before, #page-container .sh-header-6 .c-hamburger span:after { background: #000 !important; }
And a couple of questions regarding the drop-down menu:
4. How to put the language switch in one line or how to make it one button, more compact.
5-6. How to lift these elements so that they do not take up extra space
To achieve this, please use the below custom CSS code.
body .sh-header-right-side .sh-header-mobile-dropdown { padding-bottom: 0 !important; } body .sh-header-right-side .sh-table-cell { display: block !important; } .sh-header-mobile .sh-nav-mobile li.trp-language-switcher-container a { display: block; float: left; } .sh-header-mobile .sh-nav-mobile li.trp-language-switcher-container a:after { display: none; } .sh-header-mobile .sh-nav-mobile li.trp-language-switcher-container ul.sub-menu { display: block !important; }
Best regards,
Shufflehound team
Hi @donduck,
I hope you are well today and thank you for your question.
When you use internal page links in the menu then the page doesnβt get refreshed causing the issue.
You can close it by using the custom plugin solution shared in the below topics.
https://support.shufflehound.com/forums/topic/main-menu-on-mobile/#post-47622
https://support.shufflehound.com/forums/topic/mobile-anchor-navbar-close/#post-51820
https://support.shufflehound.com/forums/topic/hide-mobile-menu-on-click/#post-5380
Best regards,
Shufflehound team
You are most welcome here π
You are most welcome here π
Hi @nestageez,
I hope you are well today and thank you for your question.
You can hide featured image on single post page by adding the following CSS code in the Custom CSS code option of your theme on the below path.
Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code
.single-post article .post-thumbnail { display: none; }
Best regards,
Shufflehound team
To hide read time on mobile, just change the above shared custom CSS code as below.
@media (max-width: 550px){ #content article .post-meta a.post-comments, #content article .post-meta .post-readtime { display: none; } }