Column Disappearing Act

Posted in: Newsmag
Post count: 104

http://aws.ntv.ca/

^ I have a column on this page … but it’s not showing up. Any help?

Post count: 6535

HI

I’ve checked your site and the content from homepage is displayed fine. If you still have this issue please provide more specific details about it, also a screen pointing the issue would be helpful.
Thanks!

Post count: 104

I had to rebuild the page. I’m not sure what happened … the old (problematic) page is here: http://aws.ntv.ca/home-2-2/

Post count: 6535

Hi

That column was hidden becasue there was a custom class added on it. That class had a display: none property, if the property is removed the column is properly displayed: http://screencast.com/t/pr3DiOl4l5e5

.vc_non_responsive .vc_row .vc_hidden-sm{
display: block!important;
}

Thanks!

Post count: 104

but that is only suppose to affect sm screens … right?

Post count: 6535

Hi

It affects all screens as there is no media query. You can use media queries if you want to affect only some specific screens, here is an example:

@media(max-width: 768px){
.vc_non_responsive .vc_row .vc_hidden-sm{
display: block!important;
}
}

Thanks!

Viewing 6 posts - 1 through 6 (of 6 total)
The forum ‘Newsmag’ is closed to new topics and replies.