osseo I think it only apply to the accordion module title... not the "article title" as I'm trying to create a visual emphasis on the "article title" that shows up within the accordion module since we can't add in "+ or -" to show user they can extend to see more content. Is there a way to change the front style for those article headers (not the module heading) for that module?
Iām having trouble understanding your query. Can you kindly elaborate or better yet, you may provide screenshot marked with annotations as to which element you wish to refer to
Regarding (+/-) marker, Do you wish to refer to having something like shown in JA ACM accordion module seen on JA Company demo site as seen under "Frequently Asked Question" title ?
How can I make the background color apply to only 1 custom module (i.e. "Enroll - content slider")?
The specific result can be derived by creating new module position enveloped around separate div tag which will affect the specific section solely. Here's how -
1) You can go to \templates\ja_university_t3\tpls\blocks\contentslider.php
and add this code at the very bottom :
<?php if ($this->countModules('contentsliderbelow')) : ?>
<!-- CONTENTSLIDER BELOW -->
<div class="t3-contentsliderbelow">
<div class="container contentsliderbelow">
<div class="main <?php $this->_c('contentsliderbelow') ?>">
<jdoc:include type="modules" name="<?php $this->_p('contentsliderbelow') ?>" style="T3Xhtml" />
</div>
</div>
</div>
<!-- //CONTENTSLIDER BELOW ENDS-->
<?php endif ?>
Note - Would suggest to also take backup of your current file before performing aforesaid steps, in case rollback required whilst facing any issues
2) Assign your specific module to newly created module position - contentsliderbelow
You can kindly refer to this documentation for defining new module position for assigning specific module
3) Add this to custom.css file and change color code accordingly :
.t3-contentsliderbelow{background:#ccc;}
Please start a new topic for other forum queries/relative issues so as to avoid multiplicity [adding of variety of queries in trailing forum threads which arent related to parent topic]
The gesture requested would help streamlining forum topics and keep them organized which would eventually be beneficial for the whole community
Thanks for understanding