Antakarana Posted December 11, 2012 Share Posted December 11, 2012 (edited) Hi everybody, I've got a problem with the text of the "last posts" section of our shop-blog http://nutri-cosmetica.com/es/blog If you see this sreencapture, the text doesn't fill all the width of the screen: Please, could anybody tell me how to change that on CSS? I've tried several ways but they don't seem to work Thanks! Edited December 11, 2012 by Antakarana (see edit history) Link to comment Share on other sites More sharing options...
zaymund Posted December 11, 2012 Share Posted December 11, 2012 Find the folder with the module blog css file and specify the width #post_list ul li .detail_left { float: left; width: 590px; } 1 Link to comment Share on other sites More sharing options...
Antakarana Posted December 11, 2012 Author Share Posted December 11, 2012 Find the folder with the module blog css file and specify the width #post_list ul li .detail_left { float: left; width: 590px; } Thanks for your answer... I've tried what you've said. Now the problem is that the theme is responsive so when you see the page in a little screen the text doesn't fill correctly. Is there a way to tell the text to adapt itself to the screen limits? thanks Link to comment Share on other sites More sharing options...
zaymund Posted December 11, 2012 Share Posted December 11, 2012 (edited) @media only screen and (min-width: 700px) { #post_list ul li .detail_left { float: left; width: 70%; } } @media only screen and (min-width: 320px) { #post_list ul li .detail_left { float: left; width: 50%; [spam-filter] Edited December 11, 2012 by zaymund (see edit history) 1 Link to comment Share on other sites More sharing options...
Antakarana Posted December 11, 2012 Author Share Posted December 11, 2012 Thanks!! it works Link to comment Share on other sites More sharing options...
zaymund Posted December 11, 2012 Share Posted December 11, 2012 Good !!! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now