Imran Mondal
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to unindex exact pagesUse Yeost seo plugin
Forum: Fixing WordPress
In reply to: Please help me with text wrappingHi There,
Try using this code, I hope it’s may help@media only screen and (max-width: 740px) { td { display: block; } }Thanks
Forum: Fixing WordPress
In reply to: How to change link colours without CSSCheck your theme function if there is any option for changing color of link. If not then the only way of doing this is to edit your CSS. You are not willing to do it by CSS but here is the code if you feel interested
.navigation p a { color: #0088cc; }Forum: Themes and Templates
In reply to: Contact Form 7 Title with backgroundPlease Share your contact page URL so that we can have a look
Thanks
Forum: Themes and Templates
In reply to: [MH Magazine lite] Compatibility With Review PluginHi carlodimaandal,
I am agreed with @mh Themes, However you can try disabling all other plugins except WP Customer Reviews to see if it work or not. If it work then enable other pluging one by one then you will know which plugin conflicting with WP Customer Reviews.
Note: Before doing this please make sure you installed and configured WP Customer Reviews correctly.
Thanks
Forum: Fixing WordPress
In reply to: Login Option in Header Pushing Text Down?Paste this code to your CSS editor
#branding img { float: left; }Forum: Fixing WordPress
In reply to: Login Option in Header Pushing Text Down?Hi riadesai,
Can you please show me a screenshot of how you see this two section when you log in as admin?
Thanks
Forum: Themes and Templates
In reply to: [Zerif Lite] Logo move leftHi,
Use this CSS code below.navbar-brand > img { margin-left: -100px !important; margin-top: 10px !important; }Forum: Fixing WordPress
In reply to: Animated gif not animatingHey,
I checked your site and image. It’s not problem with your website. The Gif image itself stop animating after certain time
Forum: Themes and Templates
In reply to: [Hitchcock] Can't change the .main-menu li:hover > a { color:; }Please give me your site URL
Forum: Fixing WordPress
In reply to: How to optimize CSS delivery – (Bootstrap cdn Custom CSS)Follow this tutorial https://www.youtube.com/watch?v=LmdT2zhFmn4&list=PLv1YUP7gO_viROuRcGsDCNM-FUVgMYb_G
Forum: Themes and Templates
In reply to: [Hitchcock] Can't change the .main-menu li:hover > a { color:; }Hello givethiswave,
Instead of using .main-menu li:hover > a { color:; }
Try using .main-menu li:hover > a { color: !important; }Thanks
Forum: Fixing WordPress
In reply to: How to optimize CSS delivery – (Bootstrap cdn Custom CSS)There is no need to run Node.js on server, just use it in your theme development workflow. Well to make things more easier use this services mentioned below
Forum: Fixing WordPress
In reply to: How to optimize CSS delivery – (Bootstrap cdn Custom CSS)Hi arslan91,
it’s not possible to combine cdn file with your custom stylesheet. I suggest you to load cdn file first then your custom stylesheet. Try loading them in following order
1. Bootstrap CDN stylesheet
2. Font or any other third party css
3. Custom stylesheet(Minified Version)Yes you can use Grunt or Gulp for minify your CSS & JS files. In Grunt you can use “grunt-contrib-cssmin” for CSS minification and “grunt-contrib-uglify” for JS
Beside this compress your images and use appropriate file format which make your theme faster.
Forum: Fixing WordPress
In reply to: how to create navigation bar (Frontier theme)Create a new menu and mark “Header Menu (main)” on theme location.
Thanks