Home Forums Theme support Sundance Quickgallery & Room Grid Reply To: Sundance Quickgallery & Room Grid

Hi,

1. Hm, this is not so easy, because WordPress display always the entries by publishing date, there is no extra option to filter the rooms. Maybe we can include in a future update an extra option for the IDs of the rooms, but we need at least one week

2. The number of characters is the excerpt size, you can add a code in your functions.php file to change the size, here is an example code:

function new_excerpt_length($length) {
	return 20;
}
add_filter('excerpt_length', 'new_excerpt_length');

To justify the text, you can add this code in WP admin -> Appearance -> Theme Options -> General -> Extra CSS Content:

.rooms_entry_headline  p {
 text-align:justify;
}

3. Ok, that’s very easy, you can add this css code in WP admin -> Appearance -> Theme Options -> General -> Extra CSS Content:

.quickg.allery-item img {
 margin:0px auto;
}