Simon
Forum Replies Created
-
The 6.1.3 fix worked for me.
I’ve got the same issue.
I can’t access the update section of the admin area and neither the network section (as asked in this thread).It doesn’t work for me to just edit the admin account and hit save.
I have no user right management plugin installed and it’s a one language website.
The error happened when Wordfence was updated.Forum: Themes and Templates
In reply to: Change one menu-item to green backgroundThere’s no solution in that thread. But I will try that forum as well.
Forum: Fixing WordPress
In reply to: Padding won't work in headerThe solution was to insert this directly in the html in header.php where the flags are..
style=”margin: 10px; float: right”
Forum: Fixing WordPress
In reply to: Padding won't work in headerIt worked by adding to style.css in the CP.
#wrapper { margin-top: 20px !important; }
I would also like to make space between the flags. How do I do that?
Forum: Fixing WordPress
In reply to: Padding won't work in headerStrange.
I will try to get CP access again and then try your suggestions again. Thanks for all the very fast answers.
Forum: Fixing WordPress
In reply to: Padding won't work in headerThe client changed it after I implemented the flags and again, I didn’t think it was necessary to aquire login access again.
Forum: Fixing WordPress
In reply to: Padding won't work in headerBecause I don’t have access to the controlpanel at the moment. Perhaps I should aquire that instead. Just thought editing in filezilla would do.
Forum: Fixing WordPress
In reply to: Padding won't work in headerIs there a way I can add margin or padding directly in the html/php and overrule the css? Perhaps that’s a solution? What I edit in the header.php do get updated/saved.
Forum: Fixing WordPress
In reply to: Padding won't work in headerI don’t get this at all.
I made the update. Didn’t see a change. Then I tried deleting the css file. Didn’t fuck up the site either??Doesn’t make sense. I clear my cache all the time.
There are only two css files in the theme. style.css (which doesn’t contain #wrapper) and hvid.css
Forum: Fixing WordPress
In reply to: Padding won't work in headerI’m editing with filezilla. The changes I make do get live ??
I just downloaded it to make sure, since you couldn’t see the changes I made.
Forum: Fixing WordPress
In reply to: Padding won't work in headerI just downloaded hvid.css again and I don’t see what you see. I get:
#wrapper {
margin: 4px auto;
width: 930px;
padding: 0 30px 30px 30px;
background-color: #fff;
}Forum: Fixing WordPress
In reply to: Padding won't work in headerIn style.css can I only find these:
#wrapper img.alignleft {
float: left;
margin-bottom: 0;
margin-right: 15px;
}#wrapper img.alignright {
float: right;
margin-top: 5px;
margin-bottom: 0;
margin-left: 15px;
}and in another css file called hvid.css (firefox says it’s that one that’s used) I can find this:
#wrapper {
margin: 4px auto;
width: 930px;
padding: 0 30px 30px 30px;
background-color: #fff;
}I tried to change the last to what you said, but it didn’t help or change anything:
#wrapper {
margin-top: 20px;
width: 930px;
padding: 0 30px 30px 30px;
background-color: #fff;
}Forum: Fixing WordPress
In reply to: Padding won't work in headerCan’t find wrapper in line 44, but adding that to #wrapper doesn’t help either.
Forum: Themes and Templates
In reply to: Sidebar problem: Images won't stand side by sideNevermind. Tables works.
<table>
<tr>
<td>picture 1</td>
<td>picture 2</td>
</tr>
<tr>
<td>picture 3</td>
<td>picture 4</td>
</tr>
</table>