Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Spaces in text WordPress

  • SOLVED

Hi,

when I put text on left side off an image, like here - http://www.hotelladdict.se/about/
I get spaces in the text.

What can I do to prevent this unwanted spaces?
I can´t see them in admin.

thanks

Answers (1)

2011-07-17

Romel Apuya answers:

have you tried editing it in html view?


Charlotte Raboff comments:

the text looks normal in html view - I don´t see the spaces there..


Romel Apuya comments:

try adding

div.entry p{
text-align:left;
}

at the bottom of you css of your current theme.


Charlotte Raboff comments:

added it now but there is no difference..


Romel Apuya comments:

try this

div.entry p {
color: #555555;
font-family: Arial;
text-align: left;
}

and you can see the difference.

It because of the font-family that your using.


Charlotte Raboff comments:

no.....there is no difference with this code...


Romel Apuya comments:

did you clear your cache?


Charlotte Raboff comments:

yes... can you see a difference?


Romel Apuya comments:

because i cant even see changes to http://www.hotelladdict.se/wp-content/themes/cleanr/style.css


Charlotte Raboff comments:

? - look at the bottom of the file - I can see your code..

strange.....


Romel Apuya comments:

try removing

the opening <style> and closing style in

<style>

.entry div[id^="___plusone_"] {

float:right;

margin-right:-12px;

margin-bottom:6px;

}

</style>


Romel Apuya comments:

coz you have that in you css..i guess.


Charlotte Raboff comments:

Ok.. I have removed that now but no difference..


Romel Apuya comments:

ok i figured it out..you have an unclosed css block

.borderedbox {
border: 1px solid #CCC;
background: #f9f9dc;
padding:5px 10px;
overflow: hidden;
clear: left;
display: block;


should b

.borderedbox {
border: 1px solid #CCC;
background: #f9f9dc;
padding:5px 10px;
overflow: hidden;
clear: left;
display: block;
}


Charlotte Raboff comments:

Great, thanks :-)