commonpeoples 0 Report post Posted June 1, 2011 Hello, Ive been trying to use firebug to override a style in my site http://getliftedgym.com/products-page/ the product description box is to small it needs to be expanded to 150 pixels... I locating the css identifier and have found it but when placed in the custom css box it doesnt complete the request you can see it glitches a bit at the correct size then goes right back to the wrong size. Anything on the subject would help thank you. below is the css i used .product_grid_display .product_grid_item { width: 150px; } Share this post Link to post Share on other sites
catrina 103 Report post Posted June 2, 2011 Try adding the CSS to your base.css file instead. First, make sure the child theme (PlatformBase) is enabled so that you can go to Appearance > Editor and paste your custom CSS in that file. Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
commonpeoples 0 Report post Posted June 2, 2011 thank you fr your help but it was unsuccessful, i noticed that when i use firebug to adjust the width of that table the correct css is below it but crossed out and above it is the width its following which is element.style { width: 68px; } Share this post Link to post Share on other sites
timlinson 3 Report post Posted June 2, 2011 try adding !important to your width to override product_grid's styling: `width: 150px !important;` Share this post Link to post Share on other sites
commonpeoples 0 Report post Posted June 2, 2011 Your a genius tim thank you that worked! Share this post Link to post Share on other sites