Hi,
Previously i have used a code found here to fix the height of the icon box on my homepage. However, now it seems that all the boxes are fixed to that same height in all the other pages as well. Are there any codes that can be used to fix the icon boxes height in individual pages?
.iconbox_top .iconbox_content { min-height: 220px; }
Thanks!
Hey lovetyh!
As always, thank you for using the theme!
You can use the body page id to modify elements on a specific page. In order to find the current page id, you can use firebug or google chrome’s inspect element. Look for the body class id. It looks something like this:
On the example above, the page id is page-id-734. Use that along with the object’s selector that you’re trying to modify. Something like this:
.page-id-734 .iconbox_top .iconbox_content { min-height: 220px; }
I hope this helps.
Cheers!
Ismael
The problem is resolved. Thank you!