Ratnesh Sonar
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Static front pageHi @karlip,
After selecting a specific page as static make sure that all your content are added to that page.
Once content are added you can save it and visit your website.
Your content will be visible at homepage.Forum: Fixing WordPress
In reply to: Hide images by deviceHi @dfart
apologies for delayed reply
You can add media queries to you external CSS of your theme. Go to Appearance > Customize > Additional CSS.now paste your media queries in the additional CSS section and hit the Publish Button on the top right side of the additional CSS section.
CSS code added in Additional CSS section wont fade away even if you update your theme.
Hope that helps,
Regards,
RatneshForum: Fixing WordPress
In reply to: Hide images by deviceHi @dfart
Every website is made up of three different components (HTML, CSS & JavaScript).
1. HTML allows to display Text in Webpage.
2. CSS (Cascading style sheet) allows to design every component in webpage.
3. JavaScript adds various functionality and makes webpage interactive.In order to show different images and layout according to the user’s screen dimension you can use Media Queries.
Media Queries is module of CSS which helps us to define styling rules for webpage components according to users’s screen dimension.
For example
the header image of website is breaking for iPhone user so I will add a media query for iPhone users.@media only screen and (min-device-width : 375px) and (max-device-width : 667px) { .headerimg { background-image:url("wp-content/uploads/2017/12/small-header.jpg"); } }
for more details regarding Media Query you can refer below URL
https: //www.w3schools.com/cssref/css3_pr_mediaquery.asp
https: //www.w3schools.com/css/css_rwd_mediaqueries.asp
Forum: Developing with WordPress
In reply to: Hide Category names from Post MetaHi @monniblog
Try to contact the theme Author in Evanto marketplace. Theme Authors know all customization methods they can help you in Hiding category name from post meta.@ddhoray
visit maps.google.com enter your location click on share option once your location is loaded on map and select embed tab you will get a iframe code now just add that code in your website’s footer. Your map will be displayed in footer.Forum: Fixing WordPress
In reply to: my admin page goes blank l after I install the plug-incan you tell me the name of plugin which you are installing in your website?
Forum: Plugins
In reply to: Where to download WP Stock Ticket