muktadhawan
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: my web site sub menue not work on home pagePlease add this css. and check if it work for you
.home .elementor-element-54576c7c {
z-index: 99999999;
}Forum: Everything else WordPress
In reply to: Black Line Through Hyperlinked Imagesits impossible to tell you exact reason behind this. if you are familiar with coding then you can inspect the image and check
Forum: Everything else WordPress
In reply to: How to remove h1 from the all the pages except homepageHi,
this is your logo. But if you want to remove it from inner pages you can try this css:
.page #logo {
display: none;
}.home #logo {
display: block
}OR
You can add logo image from your theme option.
- This reply was modified 3 years, 10 months ago by muktadhawan.
Forum: Everything else WordPress
In reply to: Black Line Through Hyperlinked ImagesHi
Can you please share link.
Forum: Everything else WordPress
In reply to: Change header fontYou can put this css:-
.gallery-container-text a {
color: #fff;
text-transform: uppercase;
}In foundation.css line number 7827
Please try this and let me know if it worksForum: Everything else WordPress
In reply to: Change header fontHi,
Please try to add your css in foundation.css
Path is: wp-content/themes/darbydan/assets/stylesheets/foundation.css
May be it will be helpful for you.
Forum: Networking WordPress
In reply to: Under construction site & publishing postsYes you can publish post. You can make it draft at any time whenever you want.
Forum: Developing with WordPress
In reply to: Asking for help with cssTry this:-
.copy-right {text-align: center;} .footer-area {padding-bottom: 0;} .footer-area .footer-top {padding-top: 5px;}
- This reply was modified 4 years, 1 month ago by bcworkz. Reason: code fixed
Forum: Fixing WordPress
In reply to: Image alt text in source but not displayingi have inspect youe code but there is no title in the images. images has only alt tag
Forum: Fixing WordPress
In reply to: Image alt text in source but not displayingAlt tag will not show on hover
Title of image will show on image hover. Please add title in the image and check
- This reply was modified 4 years, 1 month ago by muktadhawan.
Forum: Fixing WordPress
In reply to: How to achieve a border element glow on mouseover?You need to add css on element class hover
Your div Class Name:hover { box-shadow: 0px 0px 20px rgba(0,235,255,0.8); -webkit-box-shadow: 0px 0px 20px rgba(0,235,255,0.8); -moz-box-shadow: 0px 0px 20px rgba(0,235,255,0.8); }
- This reply was modified 4 years, 1 month ago by bcworkz. Reason: code fixed
Forum: Fixing WordPress
In reply to: Hacked contact formPlease try to comment this line:-
replace this line:–
echo et_core_fix_unclosed_html_tags( et_core_esc_previously( et_get_footer_credits() ) );
to
//echo et_core_fix_unclosed_html_tags( et_core_esc_previously( et_get_footer_credits() ) );
Forum: Fixing WordPress
In reply to: Hacked contact formyou need to login your cpanel then go to file manager click on wp-content folder then themes folder then yourtheme folder then right click on footer.php and click on edit find your text
Forum: Fixing WordPress
In reply to: Hacked contact formyou can check it in footer.php
path: /wp-content/themes/yourtheme/footer.php
- This reply was modified 4 years, 2 months ago by muktadhawan.
Forum: Developing with WordPress
In reply to: Sub menu cover the main menuReplace :-
.header-main {
background-color: #2d3e50;
padding: 63px 0;
position: relative;
}to:-
.header-main {
background-color: #2d3e50;
padding: 9px 0;
position: relative;
}