Hi, I just bought this template and first problem I noticed that those 3 images in the Artslider (first page, body_splash) are covered with the footer. It looks like it's cut starting from the top because no matter how much I add a color in Adobe to the bottom of the picture it is always covered by footer at the same point. The pictures are 2000x1050px size and I would expect that they should fit between the header and the footer (as-position-3). When you look up the slider folder, the 3 of them are bigger then the artslider shows. How to change this so it will show an image as it is originally in the file?
AS Templates
POSTED: 2016-02-04
Hello LUTOL2000,
What is your site url please? Is your site works like our demo preview? The slider image is not resizable.
Regards, AS Team.
lutol2000
POSTED: 2016-02-04
The site it's only on my local. But it's the same with demo preview, I can see that the images are larger when viewing them directly from the file. When I turn the browser full screen (F11), they seem to be to small because it shows a white space between footer and slider. How should I prepare correctly the images for the slider? I tried to add some black color to the bottom and to the left side of the image and my image is 2000x1500px size but I still get white space on the bottom (on full screen) and it's always cut at the bottom.
AS Templates
POSTED: 2016-02-05
Hello LUTOL2000,
The slider height you can change using the extensions Height parameter under the extension Slider Settings tab.
Regards, AS Team.
lutol2000
POSTED: 2016-02-10
I have two questions:
1) How to move logo to the left or right (in the splash page)?
2) I've added language switcher and it have added above the menu, so it doesn't look good. How to add next to menu left or right side of the menu? (it is set the same position as menu - as-position-1)
AS Templates
POSTED: 2016-02-11
Hello LUTOL2000,
1. The template doesn't have a parameter for moving the logo, you can do it by editing css files or creating your own css, you have to put it in the style.custom.css file.
2. The switcher you have to put in the as-mainmenu position and set bootstrap column size under the extension advanced options to 2 columns, the bootstrap column size for the main menu you have to change to 10 columns.
Regards, AS Team.
lutol2000
POSTED: 2016-02-23
I've made a two language website and I need to assign different logo for each language. There is this logo.php file. How to load for english - logoEN.php and for french - logoFR.php? I've also noticed that it loads in params.php
if ($this->params->get('logo_img'))
{
$logo_img = JURI::root() . $this->params->get('logo_img');
}
else
{
$logo_img = $this->baseurl . "/templates/" . $this->template . "/images/logo.png";
}
Probably, there should be another IF to recognize the language.
lutol2000
POSTED: 2016-02-23
Referring to my earlier post, I changed like this (but maybe there is a nicer way of doing this):
if ($this->params->get('logo_img'))
{
$logo_img = JURI::root() . $this->params->get('logo_img');
}
else
{
$l = stripos($_SERVER['REQUEST_URI'], "fr");
if ($l > 0) {
$logo_img = $this->baseurl . "/templates/" . $this->template . "/images/logo.png";
} else {
$logo_img = $this->baseurl . "/templates/" . $this->template . "/images/logoEN.png";
}
}
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
What is your site url please? Is your site works like our demo preview? The slider image is not resizable.
Regards, AS Team.
The slider height you can change using the extensions Height parameter under the extension Slider Settings tab.
Regards, AS Team.
1) How to move logo to the left or right (in the splash page)?
2) I've added language switcher and it have added above the menu, so it doesn't look good. How to add next to menu left or right side of the menu? (it is set the same position as menu - as-position-1)
1. The template doesn't have a parameter for moving the logo, you can do it by editing css files or creating your own css, you have to put it in the style.custom.css file.
2. The switcher you have to put in the as-mainmenu position and set bootstrap column size under the extension advanced options to 2 columns, the bootstrap column size for the main menu you have to change to 10 columns.
Regards, AS Team.
if ($this->params->get('logo_img'))
{
$logo_img = JURI::root() . $this->params->get('logo_img');
}
else
{
$logo_img = $this->baseurl . "/templates/" . $this->template . "/images/logo.png";
}
Probably, there should be another IF to recognize the language.
if ($this->params->get('logo_img'))
{
$logo_img = JURI::root() . $this->params->get('logo_img');
}
else
{
$l = stripos($_SERVER['REQUEST_URI'], "fr");
if ($l > 0) {
$logo_img = $this->baseurl . "/templates/" . $this->template . "/images/logo.png";
} else {
$logo_img = $this->baseurl . "/templates/" . $this->template . "/images/logoEN.png";
}
}