darongeorge
Forum Replies Created
-
I”m not sure of an easy way to do that without actually modifying the theme code.
Yea it is divided 50/50 so anything over 50% will push the icons down.
Of course, you don’t really need to set it ot 80% necessarily. I was just giving an example
Good news. Looks like it is controlled by css.
There are three ways to change it that should work.
Solution 1
find this code in the css file of the site
.grid-50 {
float: left;
width: 50%;
}modify the width file and it should change the size
Solution 2
or you could write it in the custom CSS file like this
.grid-50 {
float: left;
width: 80%;
}Solution 3
If that doesn’t work you could add an important tag, it would look like this
.grid-50 {
float: left;
width: 80% !important;
}either of those options above should work.
Sounds like you need to edit one of the PHP files to get what you are looking for. If the limits are set in the code I don’t think you will be able to effectively make changes via CSS.
If you make it live I’ll take a quick look to see if I can help you pin point where to go
Forum: Fixing WordPress
In reply to: I need urgent help with custom header logo sizeSounds like you need to edit one of the PHP files to get what you are looking for. If the limits are set in the code I don’t think you will be able to effectively make changes via CSS
Forum: Fixing WordPress
In reply to: Migrating Site to New siteIf you have a decent host you could use https://ww.wp.xz.cn/plugins/duplicator/
It has helped me in migrating WordPress websites.
As far as the plugins and themes are concerned as long as you have the registration keys you should be good.
Forum: Fixing WordPress
In reply to: Recovering LoginDo you have access to the database? Usually through Cpanel on the host end.
Forum: Fixing WordPress
In reply to: Domain Changewhat is the url of the website?
Forum: Fixing WordPress
In reply to: Recovering wordpress loginDo you have access to the database on the backend of your website? Usually through cpanel.
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Done creating an empty archive.I was having the same problem. I disabled two security plugins and that fixed my problem. The two plugins that were blocking the plugin for me were sucuri security and the all in one wp security and firewall plugin.