White box

Could you elaborate? What do you mean white box and where is it?
 
PpDg2Xl.png

Those
 
Try the following:

find fieldset.display-options in your CSS and add the following:

Code:
text-align: center;
 
For stuff like that I recommend installing the Firebug addon for your browser.
 
J Greig said:
Try the following:

find fieldset.display-options in your CSS and add the following:

Code:
text-align: center;
for what?
Jamie said:
For stuff like that I recommend installing the Firebug addon for your browser.
I don't think it would work, i won't edit the theme for myself.
 
Find this code at your CSS:

Code:
fieldset.display-options {

And right before "}" sign add this:
Code:
background-color:white;
 
J Greig is correct. You need to find this in your css and make sure that it matches.

Code:
fieldset.display-options {
text-align: center;
margin: 3px 0 5px 0;
}

You can verify this by opening up Google Chrome, highlighting "Display posts from previous:" here on FP, right-clicking, and click on Inspect Element.

Highlight the following line if it isn't already, simply by clicking on it:

Code:
<fieldset class="display-options" style="margin-top: 0; ">

On the right hand side should be a box containing CSS. Find:

Code:
fieldset.display-options {
text-align: center;
margin: 3px 0 5px 0;
}

(It's the second box for me)

Put the cursor to the left of "text-align: center;". A checkbox should appear on mouseover. Click on that checkbox. You will notice that the following will occur:

1) That line will have a strike through it, and
2) The "Display posts from previous:" will move to the left on the page itself, meaning that that particular line of CSS is mandatory to fix your issue.

Let us know if you need any help! 😀
 
Back
Top Bottom