Hi to all,
How can I edit css rules for a specifica page??
I tryed with
#page-id-40 .row, .row-fluid, .editor-row {
width: 800px;
height: 320px;
float: left;
margin-left: 10%;
}
but i doesn't work!
Any suggest please?
Thanks!
Best Answer Danny , 14 February 2013 - 11:53 AM
The page-id-x is a class not an ID so you need to use it like this:
.page-id-40 .row, .row-fluid, .editor-row { }
Go to the full post
Posted 14 February 2013 - 11:25 AM
Hi to all,
How can I edit css rules for a specifica page??
I tryed with
#page-id-40 .row, .row-fluid, .editor-row {
width: 800px;
height: 320px;
float: left;
margin-left: 10%;
}
but i doesn't work!
Any suggest please?
Thanks!
Posted 14 February 2013 - 11:53 AM Best Answer
The page-id-x is a class not an ID so you need to use it like this:
.page-id-40 .row, .row-fluid, .editor-row { }
Posted 14 February 2013 - 12:04 PM
Thanks for your reply Danny, it works!!!