Elxis CMS Forum

Support => Elxis 4.x/5.x DEV => Topic started by: seadhna on December 19, 2013, 17:34:55

Title: possible to hide page image as with date/author?
Post by: seadhna on December 19, 2013, 17:34:55
Hi there, a very useful feature is the ability for certain articles to completely hide the date and author. This option is not available for page image - (in parameters) - just position change (e.g. 'large image top'). Could this be a feature in a future version of the CMS?
Title: Re: possible to hide page image as with date/author?
Post by: datahell on December 20, 2013, 13:06:55
At this time there is no such options but we will add it in Elxis 4.2 as we have some requests for this.
You can do it now with CSS.

Hide all main images in articles:
.elx_content_imagebox { display:none; visibility:hidden; }

Hide image for specific article (article with id = 12 in this example):
#elx_article_page_12 .elx_content_imagebox { display:none; visibility:hidden; }
Title: Re: possible to hide page image as with date/author?
Post by: seadhna on January 09, 2014, 13:43:49
Hi, that's great news, thanks. Yes, using the CSS method at present :-)