BlueKlip
Forum Replies Created
-
Forum: Reviews
In reply to: [ExchangeWP: Simple WP Ecommerce] I really enjoy working with ExchangeAwesome! Would love to work with you guys sometime.
Forum: Fixing WordPress
In reply to: change all bullet points on website to imagesSo, you will have to change the styling of list items in your CSS file. If you do that it will apply to all the lists where the style is applied.
Forum: Fixing WordPress
In reply to: How Can I Make This Button Move to Top Of List…You will have to make use of javascript/jquery to achieve this.
Forum: Fixing WordPress
In reply to: Navbar menu text off centerI’m glad your problem is resolved ??
Forum: Fixing WordPress
In reply to: Navbar menu text off centerI’m sorry but you should not have put the css code in functions file. request you to please revert that.
Forum: Fixing WordPress
In reply to: Navbar menu text off centerI had tried the above code in the inline css editor. The default css has a float set to right. So, I comment it, and then add margin: 0 auto; to centre align the div content.
It’s not much, but after doing this, the menu does gets centered. To get exactly how he wants, @mcgrathlaw will have to play with the CSS code to get it exactly as per his taste.
Forum: Fixing WordPress
In reply to: How can I delete a duplicate xml / menu?I think you will have to go to Appearance > Menu in wp-admin and then delete the duplicates manually.
Forum: Fixing WordPress
In reply to: Cant get into wordpress admin@wpyogi sure, I’ll stay away from asking people.
Forum: Fixing WordPress
In reply to: Navbar menu text off centerThat’s because in this case I thought they could benefit. I’ll be careful!
Forum: Fixing WordPress
In reply to: Navbar menu text off centerWhat WPyogi says is right. You should override the CSS through custom CSS or create a child theme. I sent you an email on the email id published on your website.
Forum: Fixing WordPress
In reply to: Cant get into wordpress adminPlease download an FTP client like FileZilla and then log into it with the FTP credentials as you provided in the image. Then locate the plugins folder.
If you need help, please contact me at [redacted]
Thanks,
ManishForum: Fixing WordPress
In reply to: Cant get into wordpress adminAn easy way would be to login to your FTP account, and delete the jetpack plugin folder. This will automatically deactivate the plugin and your website will start working.
After that you can install a fresh copy of the jetpack plugin and make any changes you want.
Forum: Fixing WordPress
In reply to: WordPress update problemIf you have access to your web hosting account, then there is a way to access the database and then update the password. However, that’s the last step you should be taking. Can you try and debug what’s the message you get when you try to login to your site?
Forum: Fixing WordPress
In reply to: How to fix the WordPress White ScreenCan you share your website URL?
Forum: Fixing WordPress
In reply to: Navbar menu text off centerYou will have to play around with the css to get it centre aligned.
In your css you have this class:
#navbar-1-left { float: right; position: relative; left: -25px; }
try changing it to something like below. And also remove any other float reference also in any other class.
#navbar-1-left { /* float: right; */ position: relative; /* left: -25px; */ width: 90%; margin: 0 auto; }