coder01
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: I need to hide an image if you are accessing with a mobile.Hi @alexx81 !
Give me your website link! I can resolve this issue!Forum: Everything else WordPress
In reply to: Text justification on mobileHi @marikekale !
You can use the following code in style.css:p { text-align: justify !important; }
Forum: Everything else WordPress
In reply to: How to change the background color of quote blocks?Hi @artusartos !
You have a wrong css code in your index.php as below:
<style type=”text/css” id=”wp-custom-css”>
blockquote {
max-width: 550px;
text-align: center;
margin: 20px;
padding: 20px;
font-size: 30px;
color: #edb2b2;
background: #ccc;
} </style>
change code as below:<style type="text/css" id="wp-custom-css"> blockquote { max-width: 550px !important; text-align: center !important; margin: 20px !important; padding: 20px !important; font-size: 30px !important; color: #edb2b2 !important; background: #ccc !important; } </style>
Forum: Fixing WordPress
In reply to: need to fix the menu borderHi @parminder4476 !
You can do it by editing style.css of your parent/child theme Dashboard > Appearance > Theme Editor , below code:li#menu-item-1384 { border: 0px !important; }
Click on Save.
Enjoy! (y)Forum: Everything else WordPress
In reply to: How do I restart my site?Hi @txsgrl !
You can do it by backup>restore your theme with old date.Forum: Fixing WordPress
In reply to: Comments in WordPress Editor not show date timeHi @minlee92 !
You can do it from adding code to functions.php of your parent/child theme// Add comment date function wpb_remove_comment_date($date, $d, $comment) { return $date; } add_filter( 'get_comment_date', 'wpb_remove_comment_date', 10, 3); // Add comment time function wpb_remove_comment_time($date, $d, $comment) { return $date; } add_filter( 'get_comment_time', 'wpb_remove_comment_time', 10, 3);
Forum: Developing with WordPress
In reply to: Category DescriptionHi @saeed451 !
which theme are u using?Forum: Developing with WordPress
In reply to: Remove Entire Header On Single PageHi @samij !
You are welcome dude!
(y)Forum: Fixing WordPress
In reply to: Linking a header image using CSS?Hi @panther_26 !
It can be done using following CSS code below:<style> .MyClass123{ content:url("https://imgur.com/SZ8Cm.jpg"); } </style> <img class="MyClass123"/>
- This reply was modified 4 years, 3 months ago by Steven Stern (sterndata).
- This reply was modified 4 years, 3 months ago by coder01.
- This reply was modified 4 years, 3 months ago by coder01.
Forum: Developing with WordPress
In reply to: Remove Entire Header On Single PageHi!
You can do it using CSS!
It would be useful if you are using WPBakery!
1. Goto Pages, Select the Page you want to hide
2. Click on Edit with WPBakery
3. Click on Back-end editor
4. Click on Add Element
5. Click on Search Box and type “html”
6. Click on Raw HTML
7. Insert to your page that you want to hide
8. Add below CSS Code:
<style>
header
{
display:none !important;
}
.blog-section
{
padding: 0px !important;
}
</style>Forum: Developing with WordPress
In reply to: Remove Entire Header On Single PageHi!
You can do it from here also:
1. Goto Pages > select your page > Click on Edit
2. Goto below settings of the page and select Header>HiddenForum: Developing with WordPress
In reply to: Remove Entire Header On Single PageHi @samij !
I can help you on that, You meant that hide header & nav-bar in a particular > Landing Page!
For doing the above you should follow the steps:
1. Add below code in end of the functions.php of your child theme or parent theme:add_action('wp_head', 'hide_navbar_unstopbleyou'); function hide_header_unstopbleyou(){ if(is_page( 142 )) // your page id to hide header & navbar { ?> <style> header { display:none !important; } .blog-section { padding: 0px !important; } </style> <?php } //end if } // end function
Forum: Fixing WordPress
In reply to: Centering a button in footer widget@atanasprodanov !
Okay Dude! Best of Luck for your Website!
Ragards
Jay @jay coder01- This reply was modified 5 years, 9 months ago by coder01.
Forum: Fixing WordPress
In reply to: Centering a button in footer widgetHi @atanasprodanov !
Add Custom CSS Code >
@media only screen and (min-width: 1001px) and (max-width: 1100px) {
.fusion-button.button-1
{
margin-top: 15% !important;
}
}
@media only screen and (min-width: 1101px) {
.fusion-button.button-1
{
margin-top: 25% !important;
left: 25% !important;
}Forum: Fixing WordPress
In reply to: Logo problem on mobile devicesHi @punktcom !
Logo size for Mobile Devices Optimized Correctly!
Check Your Website > https://www.nordanaby.se/stg_eb5b4
Screen Shot > https://prntscr.com/o19ib7
My Suggestions:
* Make Your Website Colorful with Images, Content!
Thanks & Regards!
Jay- This reply was modified 5 years, 9 months ago by coder01.