Justin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Nav menu slanted block effectsHi Lisa, not sure if this will work since I can’t see your site’s source, but if you are skewing a parent element negatively, maybe you could just skew the text inside positively?
Otherwise you could look at using the clip-path property, something like this:
.login-link { -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%); clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%); }
Hope that helps!
Forum: Fixing WordPress
In reply to: remove/hide/reduce-size of category title [theme: For the future]Sometimes your browser just keeps the old styling cached for a little while. If you are on pc and want to override it you can do a hard refresh with Ctrl + F5 (or I think its shift + R on Mac, something like that), then you will see your changes instantly
No problem glad to help!
Forum: Fixing WordPress
In reply to: remove/hide/reduce-size of category title [theme: For the future]Hi there,
If you go into your Customize > Custom CSS, you can paste this code and it will make your header smaller:
h2 { font-size: 24px; }
You can change that number to make the heading bigger or smaller as you see fit. If you want it to centre align the header on mobile this will help you, it will centre align on portrait view tablets and anything smaller. Place it underneath the previous css:
@media (max-width:780px) { h2 { text-align:center; } }
Hope this helps!
Forum: Fixing WordPress
In reply to: Can't reset my passwordI’m assuming you’ve checked your spam folder for the email? Other than that you can reset your password through phpmyadmin if you are comfortable doing that, otherwise your hosting company should be able to help you with that.
Forum: Fixing WordPress
In reply to: ERROR: Stop automatically scrolling to footer on page loadI noticed it when I scanned your site before following the link, you can see the details here at https://sitecheck.sucuri.net/scanner/
On the note of scrolling to the footer, it doesn’t seem to be doing that on my side. I’m using Windows and tried Firefox and Chrome, so I am not sure what the problem could be, everything seems to be fine on this side! Good luck fixing it unfortunately I won’t be much help
Forum: Fixing WordPress
In reply to: ERROR: Stop automatically scrolling to footer on page loadI noticed your site has been blacklisted by McAfee, are you sure it hasn’t been compromised and that is what is causing some bugs?
Forum: Fixing WordPress
In reply to: Extra White Space Between PluginsHi Kevin,
It looks like the Business Contacts plugin is saving all that space for a map, is there an option in the plugin to disable or hide maps?
If there isn’t you could some styling to your child theme’s css, or if you don’t have a child theme installed you could use a plugin like this one: https://www.ads-software.com/plugins/simple-custom-css/
Paste this into your child theme’s css or the simple custom plugin:
#bp-map-0 {display:none;}
Hope this helps!
JustinForum: Fixing WordPress
In reply to: Mobile site running different version… I think??Hi Whatonearthisgoingon (<–best name in a support forum I’ve ever seen)
Can you give us a link to your website to check it out? Its hard to tell what the problem could be without a link.
Forum: Fixing WordPress
In reply to: Home Button no linkHi Doradora77,
From the Dashboard, if you got to Appearance -> Menus, you should be able to find what you are looking for.
You may need to create a new menu and assign it to the primary menu area
Hope this helps
No this is the only security plugin installed. Yes I did actually have that enabled, I’ve disabled it as well, maybe that will solve the problem.
Forum: Fixing WordPress
In reply to: WordPress admin login not working (not showing dashboard)Hi seomanish,
Have you tried logging in at https://www.biggerthanbeyonce.com/wp-login.php ? I remember I had a problem like this once, I think by going to the login url specifically it allowed me to login.
Forum: Fixing WordPress
In reply to: CSS positioningSorry I didn’t read that properly! Missed the part where you said top right :/ Glad it helped ??
Forum: Fixing WordPress
In reply to: CSS positioningHi aewanishan,
First off, one problem I saw was you hadn’t closed the div tag, that might be why your fixes in style.css weren’t working.
Try this, close the div tag, like this:
<div id= header_icons> <a href="https://www.facebook.com/andrea.ewanishan"> <img alt=”” src=https://www.spark-le.com/wp-content/uploads/2014/09/Logos-Facebook-icon.png width=”40px” /></a> <a href="https://instagram.com/dreaewanishan" > <img alt=”” src=https://www.spark-le.com/wp-content/uploads/2014/09/Logos-Instagram-icon.png width=”40px” /></a> <a href="https://twitter.com/dreaewanishan" > <img alt=”” src=https://www.spark-le.com/wp-content/uploads/2014/09/Logos-Twitter-icon.png width=”40px” /></a> <a href="https://www.pinterest.com/dreaewanishan/"> <img alt=”” src=https://www.spark-le.com/wp-content/uploads/2014/09/Logos-Pinterest-Copyrighted-icon.png width=”40px” /></a> </div>
Then add this to your css:
#header_icons { margin: 10px 0 0 10px; } #header_icons a { float: left; padding-right: 10px; } #header_icons a:after { clear: both; }
Hopefully that solves your problems!
Also its best to do these changes in a child theme, not sure if you are? If not then when you update this theme it will overwrite the changes you have made.
Forum: Hacks
In reply to: Someone continuously refreshing page on my blogHi knowdict,
For that amount its probably some guy trying to find vulnerabilities in your site trying to get into the backend of your site. I would recommend installing a security plugin that can log failed log in attempts or 404 errors (I always use All in One WP Security and Firewall). You can then get hold of his ip, if its one guy, and block him through the plugin.
Maybe someone else can give you a better answer but that is what I would do.
Forum: Fixing WordPress
In reply to: How to make CSS in a filter work, instead of stylesheet's CSSyou can try adding !important to the declaration, ie:
.site-content { width:100% !important; }
If you are fine with putting a link to your site on this forum, then its easier to see the problem.
Hope that helps!