level42
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Cannot upload new media to WordPress. Stuck on “Crunching”Forum: Fixing WordPress
In reply to: Cannot upload new media to WordPress. Stuck on “Crunching”Hi @sterndata, thanks for the reply.
I ran
df -h
on my VPS at the root directory, and I got this as my output:Filesystem Size Used Avail Use% Mounted on udev 1.9G 0 1.9G 0% /dev tmpfs 395M 16M 379M 4% /run /dev/vda2 48G 14G 32G 30% / tmpfs 2.0G 0 2.0G 0% /dev/shm tmpfs 5.0M 0 5.0M 0% /run/lock tmpfs 2.0G 0 2.0G 0% /sys/fs/cgroup /dev/loop0 90M 90M 0 100% /snap/core/7713 /dev/loop1 89M 89M 0 100% /snap/core/7396 tmpfs 395M 0 395M 0% /run/user/1000
Forum: Fixing WordPress
In reply to: How to tell what plugin is using a specific PHP fileHmm, I was hoping there was an easier way, but thanks for the tip. I will check it out.
BRILLIANT!!!
Thank you so much ?? I love it when it’s a simple easy fix!
Forum: Fixing WordPress
In reply to: Changing Site Address on new installationThis issue is resolved, I forgot to copy the index.php page and change the location in the php file.
Source: https://codex.www.ads-software.com/Giving_WordPress_Its_Own_Directory
Forum: Fixing WordPress
In reply to: Can't Stop Image Repeating in SidebarYou should really look up some tutorials on how to use the “Google Inspector” or “FireFox – FireBug Plugin” or “What ever the heck the I.E version is called”
It allows you to make live, on the fly changes to your code and see them in real time. Then, take the changes to your code, and viola!
Anyway, glad I could help ??
Forum: Fixing WordPress
In reply to: Can't Stop Image Repeating in SidebarI’ve made some more changes, they all take place in the style.css.
You should also revert the height change I made earlier, (I.E, Change it back from 134 to 141.
[Edit]
I’m still not quite sure I understand your plans for the form fields, the example you provided looks exactly the same. (Only one is lower case, the other is title case)
Forum: Fixing WordPress
In reply to: Can't Stop Image Repeating in SidebarAccount shouldn’t be necessary at this point. I’m glad you were able to sift through the code I sent.
Give me a couple minutes to readjust your site and come up with some new changes for you.
- [Edit 1]
To remove the gap, change the cell height in in the <td> code:
Before:
<td valign=”top” style=”background:url(https://daelkolwitz.com/1/top.jpg);background-repeat: no-repeat;width: 248px;height: 141px;”></td>
After:
<td valign=”top” style=”background:url(https://daelkolwitz.com/1/top.jpg);background-repeat: no-repeat;width: 248px;height: 134px;“></td>- [Edit 2]
“is there a way to eliminate that space in between and push them to the left, rather than the right?”
Not entirely sure I understand what you mean, are you talking about left justify, vs right justified text?
- [Edit 3] – More Changes
/*-[ Sidebar ]———————*/
#sidebars p { line-height: 20px }
.sidebar.c-4-12 {
float: right;
width: 34.2%;
line-height: 20px;
background: #F5F5F5;
padding: 2%; <– Change to 0%
padding-top: 31px;
border-left: 1px solid #E8E8E8;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}—————————–
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
margin: 0;
padding: 0; <– Change to 0px
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}—————————–
.widget {
margin-bottom: 27px;
float: left;
clear: both;
width: 100%;
padding-left: 25px; <– Add this line
}—————————–
table th, table td {
padding: 7px 15px; <– Delete this line
padding-top: 7px; <– Add this line
text-align: left;}
Forum: Fixing WordPress
In reply to: Can't Stop Image Repeating in SidebarThe changes I made should all be applied to the style.css
A lot of padding changes (keep an eye out for those)
Alternately, if you need help, I can make these changes for you if you want to create an account for me on your site.
Forum: Fixing WordPress
In reply to: Troubles on live siteFor a simpler method, you can try disabling the Google Analytic s plugin. See if the errors disappear after that.
[Edit]
Forgot to mention: Try disabling the wordpress-seo plugin as wellForum: Fixing WordPress
In reply to: fitting image to front pageIn style.css
Change:
.entry-meta {
margin: 0 auto;
max-width: 604px;
width: 100%;
}Into:
.entry-meta {
margin: 0 auto;
/* max-width: 604px; */
width: 100%;
}Then you need a photo large enough to fill the space.
Forum: Fixing WordPress
In reply to: Can't Stop Image Repeating in SidebarOk, I think I got your webform to look as you would like.
All changes need to be made is style.css
You should be able to find all the changes I made in here:
There were quite a few, but I don’t remember all of them:
Forum: Fixing WordPress
In reply to: Can't Stop Image Repeating in SidebarAs I said above, I don’t think your issue is a “repeat” but instead the same image is linked twice, thus shows up twice.
How many widgets do you have enabled in the sidebar?
Forum: Fixing WordPress
In reply to: Blogs aren't showing on live siteApprox how many blog entries are missing between April 22nd, and August 10th?
Forum: Fixing WordPress
In reply to: Can't Stop Image Repeating in SidebarHave a look at the following DIV:
<div id=”text-2″ class=”widget widget_text”>
<div class=”textwidget”><img src=”https://daelkolwitz.com/1/All-Optin.jpg”>
</div>
</div>It appears to be a second copy of the image, no actual repeat, just the same image referenced twice.