How do I insert content like an image or php snippet above the sidebar area. Yes, I've looked, but the CSS looks fairly complex on this theme

Thankyou.
How do I insert content like an image or php snippet above the sidebar area. Yes, I've looked, but the CSS looks fairly complex on this theme

Thankyou.
Hi,
I'm not sure if this is possible without breaking the reponsive layout because you need to use an absolute, negative value. However you can try following css code:
.sidebar {
top: -300px;
}
@media only screen and (max-width: 959px) {
.sidebar {
top: auto;
}
}Great I'll try that. Yes, I agree the responsive stuff makes it complicated. Thanks for the reply.
Hey,
Glad Peter could help you. You may need to experiment on the media query stuff to make this work.
Regards,
Ismael
This topic has been closed to new replies.