Tagged: icon box
Hi
This code
#top .iconbox_top {
margin-top: -280px;
}
moves 2 icon boxes up the page as I need but I also need to identify this page
<code>.page-id-2439</code> so that it does not effect any other pages. But I cannot seem to combine them and make it work at the same time
Thanks
Richard
Hi Richard!
Please use following code
.page-id-2439 .iconbox_top {
margin-top: -280px;
}
Regards,
Yigit
Hi Yigit
That’s what I have been using but it does not work…I thought it was just my coding!!
Any ideas…cannot seem to find anything that may be stopping it…although my coding is really messy
regards
Richard
Hey Richard!
Please use following code
.page-id-2439 .iconbox {
margin-top: -280px!important;
}
Cheers!
Yigit
Hi Yigit
Thanks for that…an “important” thing to remember
Regards
Richard
Hi!
It would be better to wrap it inside media queries as following, not to mess up the look on mobile
@media only screen and (min-width: 990px) {
.page-id-2439 .iconbox {
margin-top: -280px!important;
}}
Regards,
Yigit
Hi Yigit
Thanks again
Regards
Richard