Elxis CMS Forum
Support => Elxis 4.x/5.x DEV => Topic started 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?
-
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; }
-
Hi, that's great news, thanks. Yes, using the CSS method at present :-)