Forum Replies Created
-
AuthorPosts
-
Psink
KeymasterYou can add this CSS in the Additional CSS
#main{
background-color: #484848;
}you can change the color code as per your requirement
April 24, 2023 at 11:53 pm in reply to: How to remove Author on blog page and also next and previous post? #189437Psink
KeymasterYes, it is possible, could you please share your site URL? We will inspect and provide CSS
Psink
KeymasterYou can add ‘Simple Custom CSS and JS’ plugin on your dashboard and google tracking tag code
you can follow the screen recording
https://www.awesomescreenshot.com/video/16773286?key=ae592b873e79af087b51ed501ed062b2Psink
KeymasterYes it may be possible to fix this by adding the CSS code in the Additional CSS
Could you please share your site URL if the site is live and also some reference screenshots?
Psink
Keymaster@BIRLA-ARNAA, can you please explain in more detail what did you change to fix the issue?
Psink
Keymaster@RANCHOALEGRE, there is an option to disable search in the menu GO to Customizer >> Theme Options >> Menu Options >> Search in Primary Menu
Psink
KeymasterYes, changing the parent theme is not a good approach as the code will disappear whenever the theme gets updated.
For the solution to your issue don’t change anything in the parent theme just copy the whole ‘inc’ folder
from the parent theme and paste it to the child theme. Since get_theme_file_path() get the path from the activated theme and there are no files of that path in the child theme so we have to add an inc folder. Besides that, you can customize anything in the child themePsink
KeymasterCould you please share your site login to prashant.themepalace@gmail.com? We will inspect the issue and let you know
Psink
KeymasterPlease this add one CSS
.outofstock a.button.wp-element-button.product_type_simple:before {
content: “Out Of Stock” !important;
padding: 14px !important;
margin-left: 18px !important;
border: 2px solid !important;
border-color: #f5808c !important;
}-
This reply was modified 2 years, 5 months ago by
Psink.
Psink
Keymaster@FOSTERKITTYCATS, you can add this CSS
#page-site-header #breadcrumb-list {
display: none;
}Psink
Keymaster@ALLI, Could you please share your site URL? We will provide you with a CSS to align the text center
Psink
KeymasterSure, I will share a code file with you and put CSS and Js codes in their respective place. First, you will need to install “Theme Editor” and “Simple Custom CSS and JS” Plugin, activate both plugins and follow the screen record
https://www.awesomescreenshot.com/video/16471182?key=2bf2f0fc6c00cfb185f3a46bb6d28646
let us know if you have any confusion
Psink
KeymasterWe will release the update by fixing the issue. For now, you can remove one line of code from the function.php
Follow the screen record
https://www.awesomescreenshot.com/video/16469596?key=4230b18a54c6fe6c93dddfe9e34c6c7aHope this will help
Psink
KeymasterYes, we can help you with that, can you please share your site login? You can share it to prashant.themepalace@gmail.com
April 11, 2023 at 1:25 am in reply to: Is It Possible to Left Align the Header Image & Menu Bar? #189274Psink
KeymasterHello,
First of all thank you for choosing Signify Dark theme for your site. Regarding the header alignment could you please explain more details and provide some reference screen shot.
Regarding the sticky menu add this js and css code
JS code
jQuery(document).ready(function( $ ){
$(window).scroll(function() {
if ($(this).scrollTop() > 1) {
$(‘#masthead’).addClass(‘sticky-head’);
}
else {
$(‘#masthead’).removeClass(‘sticky-head’);
}
});
});CSS code
#masthead.sticky-head .site-branding{
display: none;
}#masthead.sticky-head {
position: fixed;
z-index: 1;
background: #000;
width: 100%;
}#masthead.sticky-head #site-header-menu{
border: none;
}You can the the screen record to add this code
https://www.awesomescreenshot.com/video/16399398?key=9df412e6f41f9058f38fbb2e556613bf -
This reply was modified 2 years, 5 months ago by
-
AuthorPosts