@nettips:
To remove the boxes add the following code to the bottom of your css file:
#featured-boxs {
display: none;
}
You’ll then get quite a big gap between the dark shadow and then the image shadow. If you want to remove the second also then add the following code instead:
#featured-boxs,
.lsep {
display: none;
}
You’ll need to continue customising to get the page to look right though.
@karilebeau
Yours is a bit more complicated because you want to keep the first row of featured boxes don’t you? Is there anyway you can disable this in the theme if there’s an options panel? Or in the actual page/post screen?
If your set with the current look and don’t plan to change it we can apply a bit of a bodge. Add the following code to the bottom of your css:
#featured-boxs span:nth-child(n+5) {
display: none;
}
Let me know guys if you need more help.
Both of these are really temporary fixes I’d suggest developing the code in your theme to be more flexible.
Afzaal