I am very new to Concrete5 and CMS's in general, but I have managed to import an existing site into Concrete5 and I have learned how to add content areas into my html.
I have also added a few images to the database and added an Image Slider block, but it's enormous! The Image Slider takes up practically the entire page and I can't figure out how to resize it.
I have tried to create a custom class (slideshow-resize) with a width of 70% in my main css file. I then added this to my page_theme.php
file:
public function getThemeBlockClasses()
{
return array(
'Welcome' => array('slideshow-resize')
);
}
but when I try to use this custom class on my image slider block, it doesn't show up as an option. How can I resize the image?
Thanks in advance