This may sound complicated but it really isnt – I am going to try my best to explain.
I have a page called Gallery – in which I want to display the portfolios. This part I got.
Then on the gallery page, I want them to click on the image and open up the portfolio. This part I got
However, because the portfolio has a feature image attached to it (so on my gallery page it shows something), it somehow is automatically inserting itself on top of my content. How can i remove the automatic insert??
https://www.dropbox.com/s/ni4260f229697k6/Screenshot%202014-09-25%2013.34.39.png?dl=0
I am assuming i need to add this to the custom css?
.single-portfolio .wp-post-image {
display: none!important;
}`
Hi!
That should work, if it doesn’t try:
.single-portfolio .big-preview {
display: none!important;
}
Best regards,
Josue
yeah – that doesnt work – the other one does….thanks