Amit Singh
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [OceanWP] Margin between post entriesHello,
Are you using the Blog Grid layout? Can you please share the page URL so that I can check it? If it is blog grid layout, try to use this class
.blog-grid .blog-entry.post
Forum: Themes and Templates
In reply to: [OceanWP] Custom headerGlad to hear that it is fixed!
Forum: Themes and Templates
In reply to: [OceanWP] OceanWP problemWe can try to fix it but we need the steps to replicate the issue. If possible please mention the steps to replicate it so that we can inspect the issue and fix it.
Forum: Themes and Templates
In reply to: [OceanWP] How can I delete the sidebarHello,
Kindly add the below code to the child theme’s functions.php file to do it –
function my_post_layout_class( $class ) { if ( is_singular( 'advert' ) ) { $class = 'full-width'; } return $class; } add_filter( 'ocean_post_layout_class', 'my_post_layout_class', 20 );
Hello,
Kindly add the below code to the child theme’s functions.php file to do it –
function my_post_layout_class( $class ) { if ( is_archive( 'post' ) ) { $class = 'full-width'; } return $class; } add_filter( 'ocean_post_layout_class', 'my_post_layout_class', 20 );
Forum: Themes and Templates
In reply to: [OceanWP] Woocommerce Price color ChangeCan you please share the issue page URL so that I can check the issue?
Forum: Themes and Templates
In reply to: [OceanWP] Customize menuHello,
I’ll try to fix it in the next update of the theme.
Forum: Themes and Templates
In reply to: [OceanWP] Product Image Glitch in Oceanwp WebsiteHello,
It looks like a plugin conflict. Can you try to disable/enable plugin one by one to check for a possible conflict?
Forum: Themes and Templates
In reply to: [OceanWP] SidebarHello,
Yes, you can do it. See the documentation link to altering the layout conditionally
– https://docs.oceanwp.org/article/203-altering-layoutsForum: Themes and Templates
In reply to: [OceanWP] RTL PagniationHello,
Try to use the below code and check it works or not. Add it to the Customize > Custom CSS section –
.rtl .fa-angle-right:before { content: "\f104"; } .rtl .fa-angle-left:before { content: "\f105"; }
Forum: Themes and Templates
In reply to: [OceanWP] How to get topbar menu to hamburger for mobileHello,
The top bar menu moves into the main menu in the mobile menu. This is how it works in the OceanWP theme. There are no settings for it.
Hello,
Yes, co do it. Create a template under Theme Panel > My Library and hook it using Ocean Hooks plugin or some custom code using the child theme. Let me know if you need more help with it.
Hello,
Sorry for the late response. I don’t think it is possible. You have to adjust the image size or redesign the image according to the header height and width that you want on the desktop.
Forum: Themes and Templates
In reply to: [OceanWP] Overlay blogpost images on hoverYou’re welcome!
Forum: Themes and Templates
In reply to: [OceanWP] Woocommerce Price color Changeit seems you have designed your template using Elementor. For the first issue, please try to reach Elementor support. For the second – go to Customize > Woocommerce > Advanced styling and control the styles as per your need.