Joomla! Template 002099 - Item Support

Hello FLIPPER,
Any of your custom overrides you have to put in the style.custom.css file.

Regards, AS Team.
Hello AS Team

Thank you for your help! I've understood the custom override now.

As I understand changing the Font parameters of the mod_as_superfish_menu can be done with the Menu Options only - without a CSS override- can't it?

Go to Joomla -> Modul: mod_as_superfish_menu -> Menu Options -> MENU LAYOUT:

Font Family
Font Size
Font Color
Active Font Color
Hover Font Color
Submenu Font Size
Submenu Font Color
Submenu Active Font Color
Submenu Hover Font Color
Submenu Background Color

Unfortunately it does not work with my project mobbingberatung-zch.ch. Can you help?

Regards, Flipper
Hello FLIPPER,
It can be done by editing template css files only, the template overrides the menu settings. For example see 'mobbingberatung-zch.ch/templates/as002099/css/tmpl.default.css' file the following class (line 2312):

ul.sf-menu > li > a,
ul.sf-menu > li > span {
color: #fff;
display: block;
font-size: 18px;
font-weight: 400;
line-height: 22px;
margin: 0 20px;
padding: 20px 0 15px;
text-transform: lowercase;
transition: all 0.5s ease 0s;
}

Regards, AS Team.
Hello AS Team

To top button issue:

Either use the Quickstart demo or http://demo.astemplates.com/joomla-templates/002099/index.php

Scroll down until you see the "To top button" on the bottom right. Clicking on it is not possible!

Can you fix that please?

Regards, Flipper
Hello FLIPPER,
In the 'mobbingberatung-zch.ch/templates/as002099/css/tmpl.default.css' file please find the following class (line 1596)

#back-top {
bottom: 90px;
position: fixed;
right: 40px;
z-index: 99;
}

and change 'z-index' property to 9999, so it will looks like the following:

#back-top {
bottom: 90px;
position: fixed;
right: 40px;
z-index: 9999;
}

Regards, AS Team.
Hello AS Team

Thanks for your support!

I've changed the Menu font in the Quickstart demo and it works there without css overrride: https://www.mobbingberatung-zch.ch/joomla/as/

Firebug output

ul.sf-menu > li > a, ul.sf-menu > li > span { /joomla/as/#3 (line 988)
font-size: 24px;
}
ul.sf-menu > li > a, ul.sf-menu > li > span { tmpl.default.css (line 2312)
color: #fff;
display: block;
font-size: 18px;
font-weight: 400;
line-height: 22px;
margin: 0 20px;
padding: 20px 0 15px;
text-transform: lowercase;
transition: all 0.5s ease 0s;
}

Why does it work here but not with my project https://www.mobbingberatung-zch.ch/ ?

Thanks and regards, Flipper
Hello FLIPPER,
Sorry, your site is password protected, we have to see it.

Regards, AS Team.
Hello AS Team

Sorry about that. It's online now.

Regards, Flipper
Hello AS Team

I've done a Fetch and Render with the Google Search Control and get the following error:

https://www.mobbingberatung-zch.ch/de/templates/as002099/css/bootstrap.responsive.css Style Sheet Not found

My HTML header contains this:
<link rel="stylesheet" href="/templates/as002099/css/bootstrap.responsive.css" />

But the AS Template Package has no such file. There is only a bootstrap-responsive.css file.
A '-' instead of a '.' between bootstrap and responsive

Can you help?

Regards, Flipper
Hello FLIPPER,
Thank you for noticing about this issue, please rename the file to bootstrap.responsive.css instead bootstrap-responsive.css

Regards, AS Team.
Hello As Team

With the Firefox Network Monitor I see that the image "/templates/as002099/images/bg.7.jpg" is downloaded from my server (GET request). Why? I have overridden the "bg.7.jpg" image with my own so it should not be used anymore. This happens to other overrides (bg.x.jpg) too.

Can you fix that?

Regards, Flipper
Hello FLIPPER,
It was not overridden, it still the same from the template:
www.mobbingberatung-zch.ch/templates/as002099/images/bg.7.jpg

Regards, AS Team.
Hello As Team

Is there a way to minify all .css / java files and put all in one .css / java file to optimize http requests?

Regards, Flipper
Hello FLIPPER,
You may ask for our services here:
http://www.astemplates.com/services

Regards, AS Team.
Hello AS Team

I want to override the background-color of #top-header-row to background-color: rgba(242, 242, 242, 0.8);

How can I do that?

I tried it in my a custom css but the template overrides it.

See Firebug output of https://www.mobbingberatung-zch.ch/de/

Regards, Flipper
Hello AS Team

I have two articles in the same category per language:

DE: Für Betroffene and Für Institutionen
EN: Concerned Persons and Institutions

They are shown on the main page in the same order Für Betroffene -> Für Institutionen (Concerned Persons -> Institutions) and have a read more button.

On https://www.mobbingberatung-zch.ch/de/ if I click weiterlesen of the article Für Betroffene the target
https://www.mobbingberatung-zch.ch/de/fuer-betroffene will be opened. At the end of the article is a button weiter which opens https://www.mobbingberatung-zch.ch/de/fuer-institutionen which has a button Zurück to go back to https://www.mobbingberatung-zch.ch/de/fuer-betroffene. This is all correct.

If I do the same for the english language the article https://www.mobbingberatung-zch.ch/en/concerned-persons shows the button Prev instead of Next. And the article https://www.mobbingberatung-zch.ch/en/institutions shows the button Next instead of Prev.

Can you help?

Regards,
Flipper


Hello FLIPPER,
You have to check the article ordering in your Joomla admin panel.

Regards, AS Team.
Hello As Team

With the Firefox Network Monitor I see that the image "/templates/as002099/images/bg.7.jpg" is downloaded from my server (GET request). I have overridden the "bg.7.jpg" image in Joomla with my own so "bg.7.jpg" should not be downloaded/used anymore. This happens to other overrides (bg.x.jpg) too.

You answered that it is still the same from the template:
www.mobbingberatung-zch.ch/templates/as002099/images/bg.7.jpg

That is correct. I did the override in Joomla :
-> Extensions -> Templates -> AS Template

Content Row 4 Settings
Background image : images/Bilder/3-Punkte-Startseite-V3.jpg

Firebug:
#content-row-4 {
background-image: url("https://www.mobbingberatung-zch.ch/images/Bilder/3-Punkte-Startseite-V3.jpg");
opacity: 1;
}

Why is "bg.7.jpg" still downloaded?

Can you help?

Regards, Flipper
Hello AS Team

On 2016-09-21 you POSTED:

> Hello FLIPPER,
> You have to check the article ordering in your Joomla admin panel.
>
> Regards, AS Team.

I've checked the article ordering and it is correct.

See https://www.mobbingberatung-zch.ch/en/

The article "Concerned Persons" is before (on the left of ) "Institutions"

But on https://www.mobbingberatung-zch.ch/en/concerned-persons
there is a Prev button instead of Next.

Please help.

Regards,
Flipper
Hello FLIPPER,
Sorry, the issue is not related to the template, it can be resolved by checking ordering of your articles only.

Regards, AS Team.
Item Name:
002099
Author:
Downloads:
2551
Sales:
574
Created:
2016-05-16
Updated:
2024-04-13
Item Version:
4.1.0
Supported Joomla:
Joomla 5 Product
$29.00
Regular License
This item may be used for a single domain only.
$39.00
Extended License

AS Designing Templates Club

Templates Club
Get an access to all 94 items designed and developed by AS Designing team plus all the future items which will be released over the course of your club subscription.

Price starting from $59.00