Elxis CMS Forum

Support => General => Topic started by: ahmet on February 02, 2014, 20:02:38

Title: how to apply nice paloroid rotated nice photo css application
Post by: ahmet on February 02, 2014, 20:02:38
Hello,
I want to change all photo css(category and ordinary , all)  styles to below link..
Can anyone help me pls..
thanks..
demo: http://zurb.com/playground/css3-polaroids
css code : http://zurb.com/article/305/easily-turn-your-images-into-polaroids-wi
Title: Re: how to apply nice paloroid rotated nice photo css application
Post by: datahell on February 02, 2014, 20:40:29
If it is for Elxis 4.x I can build such a plugin for you for free.
Note: In order this to work good you must assign titles to your images.
Title: Re: how to apply nice paloroid rotated nice photo css application
Post by: ahmet on February 02, 2014, 20:45:05
Yes its for elxis..
and is it possible to use titles as seo titles also..
Its very nice css..
Thanks...
Title: Re: how to apply nice paloroid rotated nice photo css application
Post by: datahell on February 02, 2014, 21:17:48
I repeat, is it for Elxis 4.x or for Elxis 2009.x? I build new extensions only for Elxis 4.x.
Title: Re: how to apply nice paloroid rotated nice photo css application
Post by: ahmet on February 02, 2014, 21:43:06
Yes its for elxis 4 ..
Can we have option in settings , with title or not..
thanks..
Title: Re: how to apply nice paloroid rotated nice photo css application
Post by: datahell on February 02, 2014, 23:12:00
OK then!

The problem with the titles is that you need somewhere to save them. Normally a gallery plugin takes images from a folder and displays them (just images). But files don't contain title information or even more, description (suppose we don't use JPEG's EXIF data). So we need to save a title along with each image in the database (via plugin's guided input interface) which makes it a little hard to manage. Alternatively image information and titles could be stored in an XML or even a plain text file. Is this a better solution for you? Do you think something else? I need to find a way to make the use of this plugin as easy as possible, so I am waiting to hear your proposal.
Title: Re: how to apply nice paloroid rotated nice photo css application
Post by: ahmet on February 02, 2014, 23:38:20
What u think is easier for you..
thanks for ur effort..
the images will be like on this page but rotated and paloroid ? http://puretourism.co.uk/bodrum/
thanks..
Title: Re: how to apply nice paloroid rotated nice photo css application
Post by: datahell on February 03, 2014, 08:59:14
These are articles, not images! These are the images you want to display as pollaroid? If yes, this changes everything. You dont need a gallery plugin you need just a few lines of CSS. Use bigger padding, white background and css transform to rotate the images in that case.

Example:
div.elx_content_imagebox {
    width: 120px !important;
}
div.elx_content_imagebox img {
    background:#FFF;
    border: 1px solid #CCCCCC;
    margin: 0;
    padding: 5px 5px 20px 5px;
  -webkit-transform: rotate(5deg);
  -moz-transform: rotate(5deg);
}
Title: Re: how to apply nice paloroid rotated nice photo css application
Post by: ahmet on February 03, 2014, 12:40:55
yes it will be enough i guess..
thank you very much..