<?xml version="1.0"?>
<rss version="2.0"><channel><title>Vivaz Joomla Template Latest Topics</title><link>https://forum.jreviews.com/forum/136-vivaz-joomla-template/</link><description>Vivaz Joomla Template Latest Topics</description><language>en</language><item><title>Vivaz and Joomla 6?</title><link>https://forum.jreviews.com/topic/32604-vivaz-and-joomla-6/</link><description><![CDATA[<p>
	Hi,
</p>

<p>
	Will Vivaz work with Joomla 6?
</p>
]]></description><guid isPermaLink="false">32604</guid><pubDate>Tue, 03 Mar 2026 16:09:35 +0000</pubDate></item><item><title>Vivaz 2.2.2 update and logo height setting not working</title><link>https://forum.jreviews.com/topic/32514-vivaz-222-update-and-logo-height-setting-not-working/</link><description><![CDATA[<p>
	Hi Alejandro,
</p>

<p>
	Testing this update on my local setup. My logo is located in the #topbar section on the left of the menu. The 2.2.2 update removes all containment of the logo scaling and sizing and uses the actual image size which breaks the topbar logo and menu positions. I use a larger logo image so it can be scaled to fit the logo container on different screen sizes and use a template logo height setting of (40) px.
</p>

<p>
	If adding custom css to the logo img to set the height it will scale or size as it should.
</p>

<p>
	The (template styles)/logo/<strong>Logo height in pixels</strong>.... setting seems to not be working.
</p>

<p>
	Thanks!<br />
	Daniel
</p>
]]></description><guid isPermaLink="false">32514</guid><pubDate>Sun, 06 Apr 2025 19:46:54 +0000</pubDate></item><item><title>Have Problems with Kunena and Vivaz</title><link>https://forum.jreviews.com/topic/32511-have-problems-with-kunena-and-vivaz/</link><description><![CDATA[<p>
	I am also using the template on the page where the Kunena forum is displayed. But some things don't work there, like the login menu and pagination.
</p>

<p>
	 
</p>

<p>
	Has anyone had similar experiences? With the joomla standard Theme, everything works great.
</p>
]]></description><guid isPermaLink="false">32511</guid><pubDate>Thu, 27 Feb 2025 16:45:34 +0000</pubDate></item><item><title>Allowing menu dropdowns to open on hover</title><link>https://forum.jreviews.com/topic/32506-allowing-menu-dropdowns-to-open-on-hover/</link><description><![CDATA[<p>
	I asked AI for help with this and got the following script that can be added to the template's script tab, either head or footer. Feel free to play with it and share any improvements you make.
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted" id="ips_uid_1224_5" style=""><span class="tag">&lt;script&gt;</span><span class="pln">
document</span><span class="pun">.</span><span class="pln">addEventListener</span><span class="pun">(</span><span class="str">'DOMContentLoaded'</span><span class="pun">,</span><span class="pln"> </span><span class="kwd">function</span><span class="pun">()</span><span class="pln"> </span><span class="pun">{</span><span class="pln">
    </span><span class="com">// Get all top-level dropdown items</span><span class="pln">
    </span><span class="kwd">const</span><span class="pln"> dropdownItems </span><span class="pun">=</span><span class="pln"> document</span><span class="pun">.</span><span class="pln">querySelectorAll</span><span class="pun">(</span><span class="str">'.nav-item.dropdown'</span><span class="pun">);</span><span class="pln">
    
    dropdownItems</span><span class="pun">.</span><span class="pln">forEach</span><span class="pun">(</span><span class="pln">item </span><span class="pun">=&gt;</span><span class="pln"> </span><span class="pun">{</span><span class="pln">
        </span><span class="com">// Handle mouse enter</span><span class="pln">
        item</span><span class="pun">.</span><span class="pln">addEventListener</span><span class="pun">(</span><span class="str">'mouseenter'</span><span class="pun">,</span><span class="pln"> </span><span class="kwd">function</span><span class="pun">(</span><span class="pln">e</span><span class="pun">)</span><span class="pln"> </span><span class="pun">{</span><span class="pln">
            </span><span class="com">// Find the hidden toggle span and trigger it</span><span class="pln">
            </span><span class="kwd">const</span><span class="pln"> toggleSpan </span><span class="pun">=</span><span class="pln"> </span><span class="kwd">this</span><span class="pun">.</span><span class="pln">querySelector</span><span class="pun">(</span><span class="str">'[data-bs-toggle="dropdown"]'</span><span class="pun">);</span><span class="pln">
            </span><span class="kwd">if</span><span class="pln"> </span><span class="pun">(</span><span class="pln">toggleSpan </span><span class="pun">&amp;&amp;</span><span class="pln"> toggleSpan</span><span class="pun">.</span><span class="pln">getAttribute</span><span class="pun">(</span><span class="str">'aria-expanded'</span><span class="pun">)</span><span class="pln"> </span><span class="pun">===</span><span class="pln"> </span><span class="str">'false'</span><span class="pun">)</span><span class="pln"> </span><span class="pun">{</span><span class="pln">
                toggleSpan</span><span class="pun">.</span><span class="pln">click</span><span class="pun">();</span><span class="pln">
            </span><span class="pun">}</span><span class="pln">
        </span><span class="pun">});</span><span class="pln">

        </span><span class="com">// Optional: Handle mouse leave with small delay to prevent accidental closing</span><span class="pln">
        item</span><span class="pun">.</span><span class="pln">addEventListener</span><span class="pun">(</span><span class="str">'mouseleave'</span><span class="pun">,</span><span class="pln"> </span><span class="kwd">function</span><span class="pun">(</span><span class="pln">e</span><span class="pun">)</span><span class="pln"> </span><span class="pun">{</span><span class="pln">
            setTimeout</span><span class="pun">(()</span><span class="pln"> </span><span class="pun">=&gt;</span><span class="pln"> </span><span class="pun">{</span><span class="pln">
                </span><span class="com">// Check if the mouse is still outside the dropdown</span><span class="pln">
                </span><span class="kwd">if</span><span class="pln"> </span><span class="pun">(!</span><span class="kwd">this</span><span class="pun">.</span><span class="pln">matches</span><span class="pun">(</span><span class="str">':hover'</span><span class="pun">))</span><span class="pln"> </span><span class="pun">{</span><span class="pln">
                    </span><span class="kwd">const</span><span class="pln"> toggleSpan </span><span class="pun">=</span><span class="pln"> </span><span class="kwd">this</span><span class="pun">.</span><span class="pln">querySelector</span><span class="pun">(</span><span class="str">'[data-bs-toggle="dropdown"]'</span><span class="pun">);</span><span class="pln">
                    </span><span class="kwd">if</span><span class="pln"> </span><span class="pun">(</span><span class="pln">toggleSpan </span><span class="pun">&amp;&amp;</span><span class="pln"> toggleSpan</span><span class="pun">.</span><span class="pln">getAttribute</span><span class="pun">(</span><span class="str">'aria-expanded'</span><span class="pun">)</span><span class="pln"> </span><span class="pun">===</span><span class="pln"> </span><span class="str">'true'</span><span class="pun">)</span><span class="pln"> </span><span class="pun">{</span><span class="pln">
                        toggleSpan</span><span class="pun">.</span><span class="pln">click</span><span class="pun">();</span><span class="pln">
                    </span><span class="pun">}</span><span class="pln">
                </span><span class="pun">}</span><span class="pln">
            </span><span class="pun">},</span><span class="pln"> </span><span class="lit">200</span><span class="pun">);</span><span class="pln"> </span><span class="com">// 200ms delay</span><span class="pln">
        </span><span class="pun">});</span><span class="pln">
    </span><span class="pun">});</span><span class="pln">
</span><span class="pun">});</span><span class="pln">
</span><span class="tag">&lt;/script&gt;</span></pre>

<p>
	 
</p>
]]></description><guid isPermaLink="false">32506</guid><pubDate>Mon, 17 Feb 2025 21:22:46 +0000</pubDate></item><item><title>Social Media Button topbar and footer / nofollow / X logo</title><link>https://forum.jreviews.com/topic/32505-social-media-button-topbar-and-footer-nofollow-x-logo/</link><description><![CDATA[<p>
	I would like to display the social media buttons in the top bar and footer. How can I do that?
</p>

<p>
	How can I set all links to the social media buttons to nofollow?
</p>

<p>
	Can I swap the Twitter logo for X?
</p>
]]></description><guid isPermaLink="false">32505</guid><pubDate>Tue, 11 Feb 2025 18:00:57 +0000</pubDate></item><item><title>Edit Inline CSS</title><link>https://forum.jreviews.com/topic/32482-edit-inline-css/</link><description><![CDATA[<p>
	Hello,
</p>

<p>
	I am a little bit confused and unable to edit the inline CSS in Vivaz template on Jreviews 4.6.6.
</p>

<p>
	I put the changes in the custom.css file and it did'nt work.
</p>

<p>
	 
</p>

<p><a href="https://forum.jreviews.com/uploads/monthly_2024_10/InlineCSS.gif.50c1d82d6e041fe98df7ca76871e279d.gif" class="ipsAttachLink ipsAttachLink_image" ><img data-fileid="16763" src="https://forum.jreviews.com/uploads/monthly_2024_10/InlineCSS.gif.50c1d82d6e041fe98df7ca76871e279d.gif" data-ratio="152.51" width="459" class="ipsImage ipsImage_thumbnailed" alt="Inline CSS.gif"></a></p>]]></description><guid isPermaLink="false">32482</guid><pubDate>Sun, 27 Oct 2024 15:24:05 +0000</pubDate></item><item><title>Can I use the Vivaz Template for Joomla 5</title><link>https://forum.jreviews.com/topic/32400-can-i-use-the-vivaz-template-for-joomla-5/</link><description><![CDATA[<p>
	Thats my question:<br />
	Can I use the Vivaz Template for Joomla 5?
</p>
]]></description><guid isPermaLink="false">32400</guid><pubDate>Mon, 26 Feb 2024 13:19:13 +0000</pubDate></item><item><title>Display Background image only for categories?</title><link>https://forum.jreviews.com/topic/32376-display-background-image-only-for-categories/</link><description><![CDATA[<p>
	Is it possible to display the template background image of a position only for categories and not on the detail pages?
</p>
]]></description><guid isPermaLink="false">32376</guid><pubDate>Tue, 14 Nov 2023 17:39:42 +0000</pubDate></item><item><title>Show Secondary Sidebar Modul in responsive below main area?</title><link>https://forum.jreviews.com/topic/32359-show-secondary-sidebar-modul-in-responsive-below-main-area/</link><description><![CDATA[<p>
	Is it possible to show the Secondary Sidebar Modul positions in responsive/mobile view also below main area. Just like the Primary sidebar?
</p>
]]></description><guid isPermaLink="false">32359</guid><pubDate>Wed, 23 Aug 2023 08:54:06 +0000</pubDate></item><item><title>Control of colour of social media and hamburger icons</title><link>https://forum.jreviews.com/topic/32348-control-of-colour-of-social-media-and-hamburger-icons/</link><description><![CDATA[<p>
	Is there anyway to change the colour of the social media icons and the hamburger menu item for mobiles.  As you can see from the attached image, the grey colour of both really blends into the background image we use and before I change the image I just wanted to know if there was some CSS code I could use to override the default display colours for these.
</p>

<p>
	 
</p>

<p><a href="https://forum.jreviews.com/uploads/monthly_2023_07/IMG_3777.PNG.689398a80de5d6d02ad5819126cc4b08.PNG" class="ipsAttachLink ipsAttachLink_image" ><img data-fileid="15433" src="https://forum.jreviews.com/uploads/monthly_2023_07/IMG_3777.thumb.PNG.c6cacf0844ef69ebdf5de4b077b25ade.PNG" data-ratio="217.39" width="345" class="ipsImage ipsImage_thumbnailed" alt="IMG_3777.PNG"></a></p>]]></description><guid isPermaLink="false">32348</guid><pubDate>Mon, 10 Jul 2023 07:16:28 +0000</pubDate></item><item><title>Lots of niggling problems with template ...</title><link>https://forum.jreviews.com/topic/32344-lots-of-niggling-problems-with-template/</link><description><![CDATA[<p>
	Hi,
</p>

<p>
	I'm fast realising that unlike ireviews, vivaz is not a template for those who aren't medium-advanced users.  I'm having all sorts of niggling problems, including:
</p>

<p>
	1. Unless I have the primary color set to blue all hyperlinks become invisible as they default to the standard text colour (black).  I can;t see an easy way to set hyperlinks to be a different color.
</p>

<p>
	2. The background colouring of drop down menus is very weird.  I mean it looks great on the demo site, but on my site under some colour schemes the latest selected menu option is not visible to users and it is really hard to find a colour scheme where when you hover over or select a drop down menu option it is actually easy to read what is shown.  I have (as a work around) had to remove all of the drop down menus from my website which isn't ideal.  Because of the issue 1 above, I am also locked into my primary color being blue, not default or any other colour.
</p>

<p>
	3. All of the modules I have in position-5 don't appear on my mobile phone, and I can't figure out why.  I find the instructions that are provided with vivaz very hard to understand unless you have a high level knowledge of whatever bootstrap V5 and css is.
</p>

<p>
	4. I have my main menu in the topbar position, but for some reason it won't convert into a hamburger menu option in the mobile view, which the instructions seem to suggest it should, and I can't find the setting to get that to work.
</p>

<p>
	5. When I add the social icon to the topbar, it uses a lot of space (it puts it above the icon and menu rather than beside it ) - this leads to a much longer topbar than I would like.
</p>

<p>
	 
</p>

<p>
	If I hadn't paid $US40 for this template so I can use it with my jreviews website I probably would just walk from this template as too complex for an average user, but curious to know if I am the only one having these problems? 
</p>

<p>
	 
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">32344</guid><pubDate>Sat, 01 Jul 2023 01:49:03 +0000</pubDate></item><item><title>Stretched images?</title><link>https://forum.jreviews.com/topic/32341-stretched-images/</link><description><![CDATA[<p>
	Hi,
</p>

<p>
	I've just purchased vivaz as part of upgrading my websites (was previously on ireviews), and all the images in the blog layout are stretching (horribly) to fit the screen (see example attached).  If I revert to one of the standard Joomla 4 templates this goes away, so I'm assuming it is a setting in vivaz which is stretching the images rather than resizing them, but I can't for the life of me find it.  
</p>

<p>
	Also is there a function like in the old ireviews template that allows you to only display modules on smaller screens or mobiles?  This was a great feature I used a lot, but can't see anything similar for vivaz and what documentation there is, is aimed at someone with a much higher technical knowledge that myself.
</p>

<p><a href="https://forum.jreviews.com/uploads/monthly_2023_06/ImgDistort.jpg.034fca3cfad53b2c9dbe5cc1d1698489.jpg" class="ipsAttachLink ipsAttachLink_image" ><img data-fileid="15386" src="https://forum.jreviews.com/uploads/monthly_2023_06/ImgDistort.thumb.jpg.45fb331197f53ae7b4d3cae22fdb7370.jpg" data-ratio="66.1" width="1000" class="ipsImage ipsImage_thumbnailed" alt="ImgDistort.jpg"></a></p>]]></description><guid isPermaLink="false">32341</guid><pubDate>Sun, 18 Jun 2023 07:27:49 +0000</pubDate></item><item><title>Is there a known problem of Vivaz with Joomla 4.3?</title><link>https://forum.jreviews.com/topic/32330-is-there-a-known-problem-of-vivaz-with-joomla-43/</link><description><![CDATA[<p>
	I updated my site to Joomla 4.3 and suddenly the whole page is formatted in bold and italics. I have ruled out all other problems and also tried the theme on another site with Joomla 4.3 and there too the whole page is suddenly in bold and italic.
</p>

<p>
	Can anyone else report something similar?
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">32330</guid><pubDate>Thu, 20 Apr 2023 07:56:38 +0000</pubDate></item><item><title>Can Vivaz be installed on Joomla 3 to prepare for a migration to Joomla 4?</title><link>https://forum.jreviews.com/topic/32337-can-vivaz-be-installed-on-joomla-3-to-prepare-for-a-migration-to-joomla-4/</link><description><![CDATA[<p>
	I am going through the process of migrating from iReview Joomla3 to Vivaz Joomla4 on a dev site, and I was wondering if in order to cut down on the template re-skin time, if it's possible to install Vivaz on a Joomla 3 site. I won't be using it on the J3 site, I just wanted to get all the template configuration done before the migration.
</p>

<p>
	Thanks!
</p>
]]></description><guid isPermaLink="false">32337</guid><pubDate>Sun, 21 May 2023 18:51:29 +0000</pubDate></item><item><title>Title in showcase Positions?</title><link>https://forum.jreviews.com/topic/32328-title-in-showcase-positions/</link><description><![CDATA[<p>
	Is it possible to acivate / show the title of a module in showcase Positions (showcase-bottom)
</p>
]]></description><guid isPermaLink="false">32328</guid><pubDate>Fri, 31 Mar 2023 15:32:57 +0000</pubDate></item><item><title>Module Design?</title><link>https://forum.jreviews.com/topic/32267-module-design/</link><description><![CDATA[<p>
	Hi,
</p>

<p>
	are there defined styles for the Vivaz theme for the module design like in the iReview theme (bg-light3 / titlebar) that you could use?
</p>

<p>
	Or would I have to style everything?
</p>

<p>
	Ok, I could also copy the css styles from the iReview, but I thought maybe there are ready-made ones that you could put directly into the classes.
</p>

<p>
	I did not find any in the description.
</p>
]]></description><guid isPermaLink="false">32267</guid><pubDate>Thu, 05 Jan 2023 11:41:46 +0000</pubDate></item><item><title>Vivaz hook for background image css per page</title><link>https://forum.jreviews.com/topic/32208-vivaz-hook-for-background-image-css-per-page/</link><description><![CDATA[<p>
	Hi Alejandro,
</p>

<p>
	Using the below vivaz hook for background image how do I make this work only for a single page, not all pages?
</p>

<p>
	When I do this by hard coding to the template "Background Images" as a param setting, the template recognizes this only for the menu item set on the individual background, not all pages, but the hook shows the css on all pages.
</p>

<p>
	Guessing I need a condition using the page &lt;body&gt; class to make this work but have no idea how to get it.
</p>

<p>
	AND: For some reason I can't find our discussion on this.
</p>

<p>
	Thanks
</p>

<p>
	Daniel
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted"><span class="pln">Clickfwd\Vivaz\Vivaz::filter('showcase:background_image_css.header', function ($css, $bgImage) {
    $css['background-image'] = 'linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), '. $css['background-image'];

    return $css;
});</span></pre>
]]></description><guid isPermaLink="false">32208</guid><pubDate>Tue, 27 Sep 2022 06:21:28 +0000</pubDate></item><item><title><![CDATA[Joomla 4.x & Vivaz install]]></title><link>https://forum.jreviews.com/topic/32134-joomla-4x-vivaz-install/</link><description><![CDATA[<p>
	I'm starting to get to work on upgrading to Joomla 4.x. 
</p>

<p>
	I tried to install the Vivaz template today using the same method as I would have done with Joomla 3.10.8.
</p>

<p>
	However, I get the following error messages as shown in the attached capture files:
</p>

<p>
	UPLOAD PACKAGE FILE
</p>

<p>
	capture1.png = "Not Acceptible"
</p>

<p>
	INSTALL FROM FOLDER
</p>

<p>
	capture2.png = "Can find XML setup file"
</p>

<p>
	capture3.png = "Copy file failed" (this was tried after unzipping the zip file)
</p>

<p>
	Does anything stand out as why this would be failing for me?
</p>

<p><a href="https://forum.jreviews.com/uploads/monthly_2022_04/capture3.png.dfa661f00193a5f50f9601cc9f2c2437.png" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="14377" src="https://forum.jreviews.com/uploads/monthly_2022_04/capture3.png.dfa661f00193a5f50f9601cc9f2c2437.png" data-ratio="87.86" width="667" class="ipsImage ipsImage_thumbnailed" alt="capture3.png"></a></p>
<p><a href="https://forum.jreviews.com/uploads/monthly_2022_04/capture2.png.9d300007dc19cf48db02fd40f0657bca.png" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="14378" src="https://forum.jreviews.com/uploads/monthly_2022_04/capture2.png.9d300007dc19cf48db02fd40f0657bca.png" data-ratio="81.15" width="663" class="ipsImage ipsImage_thumbnailed" alt="capture2.png"></a></p>
<p><a href="https://forum.jreviews.com/uploads/monthly_2022_04/capture1.png.6987d1e97a43ac3fb4c223efa358ec15.png" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="14379" src="https://forum.jreviews.com/uploads/monthly_2022_04/capture1.png.6987d1e97a43ac3fb4c223efa358ec15.png" data-ratio="72.97" width="962" class="ipsImage ipsImage_thumbnailed" alt="capture1.png"></a></p>]]></description><guid isPermaLink="false">32134</guid><pubDate>Wed, 20 Apr 2022 00:20:57 +0000</pubDate></item></channel></rss>
