muktadhawan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 2 Columns in Mobile VersionFirst you have to confirm you have bootstrap with in your theme.
Then you can add it in page where you want to addIf you have not bootstrap you can use custom coding
<div class=”newadd”>
<div class=”newaddin″>your image code here</div>
<div class=”newaddin″>your image code here</div>
<div class=”newaddin″>your image code here</div>
<div class=”newaddin″>your image code here</div>
</div>Add style in you style file:-
.newadd{float: left; width: 100%;}
.newaddin{float: left; width: 25%;}@media only screen and (max-width: 767px) {
.newaddin{float: left; width: 50%;}
}
Try above code and let me know if it help.Or please share your website link where you want to add code. so that i can check
- This reply was modified 4 years, 3 months ago by muktadhawan.
Forum: Fixing WordPress
In reply to: Customizing Title (log) fontThis is not on your home page. this is on 404 error page(page not found)
add this css to you website’s (style.css) file
.header-logo a {
font-family: ‘Courgette’, cursive !important;
}Do let me know if it works for you
Thanks
Forum: Fixing WordPress
In reply to: Customizing Title (log) fontI have checked but sorry not find this text anywhere on homepage. can you please screenshot and font name you want to add for the text
Forum: Fixing WordPress
In reply to: responsive slider image width on mobileHello,
I think this is because of heightTry to change height for mobile view also add this style for mobile
#grayhouse-slides- .single-grayhouse-slide-item {background-size: 100%; background-repeat: no-repeat;}
May be this will help you
ThanksForum: Fixing WordPress
In reply to: Image blurry on edge and chrome but not on firefoxHi,
Can you please share website link to check
Thanks
Forum: Fixing WordPress
In reply to: Homepage Is Not UpdatingYes, you can try this. hope this will help you.
Forum: Fixing WordPress
In reply to: “Add New Page” and “Add New Post” pages look identicalHi,
I think you using post page as home page. please change setting.
OR for more detail Can you please share screenshot and website url.Thanks
Forum: Fixing WordPress
In reply to: Customizing Title (log) fontHi,
I have checked you are using image for logo not text. you have to edit it in Photoshop or other deign tool then upload it again.
Thanks
Forum: Fixing WordPress
In reply to: Homepage Is Not UpdatingHi,
Please check is there is any cache plugin activate in your website or on server. if yes change its time setting
Thanks
Forum: Fixing WordPress
In reply to: 2 Columns in Mobile VersionHi,
You can use bootstrap for this
<div class=”container”>
<div class=”col-md-3 col-sm-6″>your image code here</div>
<div class=”col-md-3 col-sm-6″>your image code here</div>
<div class=”col-md-3 col-sm-6″>your image code here</div>
<div class=”col-md-3 col-sm-6″>your image code here</div>
</div>Forum: Themes and Templates
In reply to: [Twenty Twenty] Create a background image for the MenuPlease try to add this css in your theme’s CSS files. You can change image url
#site-header {
background: url(“https://www.narineisajanyan.com/wp-content/uploads/2015/09/IMG_1753.jpg”);}
Forum: Fixing WordPress
In reply to: Twenty Twenty 3 Footer ColumnsHi
If there is no default option in theme. you can create widget and call them in footer.php
Forum: Fixing WordPress
In reply to: Categories not workingHi
I have checked this URL is working for category:-
https://www.simonessavourycreations.com/category/recipe-box/
You need to add category before category name.
Please check if I am write.
Thanks
Forum: Fixing WordPress
In reply to: Social Icon Header.header-sidebar .social-button-twitter {
display: none !important;
}Please add this in your theme css file.
Forum: Fixing WordPress
In reply to: Social Icon Header.header-sidebar .social-button-twitter {
display: none;
}Try this