My blog acting strange

Discussion in 'Websites' started by satyrion, Jan 19, 2008.

  1. #1
    hey here is my blog http://www.techblogonline.com check out the articles they look strange, the spaces are to long between the words, whats wrong with it?
     
    satyrion, Jan 19, 2008 IP
  2. HoagieKat

    HoagieKat Peon

    Messages:
    87
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #2
    You have it set as fully justified in your style sheets, if you set the text left justified it'd look less weird.

    Set your text-align: justify; to text-align: left;
     
    HoagieKat, Jan 19, 2008 IP
  3. HoagieKat

    HoagieKat Peon

    Messages:
    87
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #3
    more specifically in the file: http://techblogonline.com/wp-content/themes/mushblue-10/style.css

    The part:
    
    #content {
    	width: 550px;
    	float: left;
    	display:inline;
    	text-align: justify;
            padding: 10px;
    	margin: 8px;
    
    }
    
    Code (markup):
    should be

    
    #content {
    	width: 550px;
    	float: left;
    	display:inline;
    	text-align: left;
            padding: 10px;
    	margin: 8px;
    
    }
    
    Code (markup):
     
    HoagieKat, Jan 19, 2008 IP
    satyrion likes this.
  4. satyrion

    satyrion Active Member

    Messages:
    1,204
    Likes Received:
    42
    Best Answers:
    0
    Trophy Points:
    90
    #4
    thanks a lot fixed it
     
    satyrion, Jan 19, 2008 IP
  5. swedal

    swedal Notable Member

    Messages:
    3,767
    Likes Received:
    426
    Best Answers:
    0
    Trophy Points:
    230
    #5
    You chose a nice looking theme for the blog
     
    swedal, Jan 19, 2008 IP
  6. satyrion

    satyrion Active Member

    Messages:
    1,204
    Likes Received:
    42
    Best Answers:
    0
    Trophy Points:
    90
    #6
    thanks my friend :)
     
    satyrion, Jan 19, 2008 IP