Collages?


Author Message
IrN KaO

Posted: 2/7/2013
Quote message 

:-@

Ok, so I created a Collage in Artisteer - very simple, 5 pictures.

I know that later down the line, I would like to add more pictures to it...

I've already uploaded the site to my Wordpress but have come across a couple of issues.

1. How can I add more images to the collage in wordpress - in fact, even if I add more in Artisteer, export and then put it on my wordpress site, it doesn't update the collage.

2. The collage is on my "About/Home" page - the text below it, whenever I make ANY change to it whatsoever, it completely removes the collage - even if I'm editing the "coded" part of the page in Wordpress...

any thoughts?

(the big one being adding more photos to the collage)
 
Unglood

Posted: 2/7/2013
Quote message 

Quote IrN KaO:

:-@

Ok, so I created a Collage in Artisteer - very simple, 5 pictures.

I know that later down the line, I would like to add more pictures to it...

I've already uploaded the site to my Wordpress but have come across a couple of issues.

1. How can I add more images to the collage in wordpress - in fact, even if I add more in Artisteer, export and then put it on my wordpress site, it doesn't update the collage.

2. The collage is on my "About/Home" page - the text below it, whenever I make ANY change to it whatsoever, it completely removes the collage - even if I'm editing the "coded" part of the page in Wordpress...

any thoughts?

(the big one being adding more photos to the collage)


the website name would be of help...

failing the above you could make your collage in Picasa. Edit for width, height, crop, borders, overlays, in Gimp or PS and export as .jpg...

?

 
isi

Posted: 2/20/2013
Quote message 

I am having the same problem as stated above.
 
Stuart

Posted: 2/28/2013
Quote message 

I am having the same problem - anyone find a solution.
Does not seem to be very efficient to have to go back to the artisteer template and add more images and then re-upload to wordpress.
 
rodiusd

Posted: 6/18/2013
Quote message 

Don't know what is possible in WP but in joomla I have added a slideshow extention. Then placed the modeule where i wanted the slideshow and added some images. When you have new images or want to replace them you do this in the CMS manager without redesign it in Artisteer.

Hope you can find an extention WP that is using the same way of working.
 
Jose Luis

Posted: 12/1/2014
Quote message 

In order to add more images:


1. Locate the chunk of code in the file content.xml

<collages>
<collage name="collage_slideslider00REV">
<content>
CHUNK OF CODE
</collage>
</collages>

[b2. Copy the chunk of code to the notepad, and add the image, for example

<div id="slideslider00REV" style="position: relative; display: inline-block; z-index: 0; margin: 0px; border-width: 0px; " class="art-collage">
<div class="art-slider art-slidecontainerslideslider00REV" data-width="1240" data-height="580">
<div class="art-slider-inner">
<div class="art-slide-item art-slideslideslider00REV0" >
</div>
<div class="art-slide-item art-slideslideslider00REV1" >
</div>
<div class="art-slide-item art-slideslideslider00REV2" >
</div>

</div>
</div>
<div class="art-slidenavigator art-slidenavigatorslideslider00REV" data-left="1" data-top="1">
<a href="#" class="art-slidenavigatoritem"></a>
<a href="#" class="art-slidenavigatoritem"></a>
<a href="#" class="art-slidenavigatoritem"></a>
</div>
</div>

[b2. Replace the shortcode [collage id="collage_slideslider00REV"] for the text


Un saludo. Jose Luis
 
Jose Luis

Posted: 12/1/2014
Quote message 

And in WP:

1. Edit the page, and go to personalized field "theme_head"

2. Create the css for the new image

/********************* slide 2 **********************************/
.art-slideslideslider00REV2,
.responsive .art-header .art-slideslideslider00REV2,
.responsive .art-pageslider .art-slideslideslider00REV2
{
background-image: url('http://art.es/imagenes/slide_2.jpg');
background-position: center center;
background-repeat: no-repeat;
}

.responsive .art-header .art-slideslideslider00REV2,
.responsive .art-pageslider .art-slideslideslider00REV2,
.default-responsive .art-header .art-slideslideslider00REV2,
.default-responsive .art-pageslider .art-slideslideslider00REV2
{
background-size: auto auto;
}