i just put the joomla offline with offline image but in ie8 offline image cant load!
plz help me!
sidisdim
POSTED: 2012-07-09
i try to add lang but i see an error in language manager -> content
Unknown column 'a.access' in 'on clause' SQL=SELECT a.*,ag.title AS access_level,l.home AS home FROM `j35_languages` AS a LEFT JOIN j35_viewlevels AS ag ON ag.id = a.access LEFT JOIN `j35_menu` AS l ON l.language = a.lang_code AND l.home=1 AND l.language <> '*' WHERE (a.published IN (0, 1)) ORDER BY a.title asc Unknown column 'a.access' in 'on clause' SQL=SELECT a.*,ag.title AS access_level,l.home AS home FROM `j35_languages` AS a LEFT JOIN j35_viewlevels AS ag ON ag.id = a.access LEFT JOIN `j35_menu` AS l ON l.language = a.lang_code AND l.home=1 AND l.language <> '*' WHERE (a.published IN (0, 1)) ORDER BY a.title asc LIMIT 0, 20 Unknown column 'a.access' in 'on clause' SQL=SELECT a.*,ag.title AS access_level,l.home AS home FROM `j35_languages` AS a LEFT JOIN j35_viewlevels AS ag ON ag.id = a.access LEFT JOIN `j35_menu` AS l ON l.language = a.lang_code AND l.home=1 AND l.language <> '*' WHERE (a.published IN (0, 1)) ORDER BY a.title asc
plz help me
AS Templates
POSTED: 2012-07-09
Hello SIDISDIM,
Can you please provide us with an access to the Joomla admin panel, we have to check all these issue, thank You.
Regards, AS Team.
sidisdim
POSTED: 2012-07-09
i solved the second problem with a clean installation ( without use of j35.2.5.dump.sql )
but the first problem about images and ie8 still remains! i tried to use .jpg as offline image with Site Offline enabled but the image didn't display in ie8,
next i tried to use .png as offline image with Site Offline enabled and it works correctly in ie8!
i tried also to use jpg in an article and it didn't displayed in ie8, next i tried again to use png and works with ie8
my issue now is if there is way to use .jpg images in offline image with Site Offline enabled and in an article,
i want to know how i can do that.
if you steel want me to provide you with an access to joomla admin plz explain me how i will do that.
thnk u
AS Templates
POSTED: 2012-07-09
Hello SIDISDIM,
We are sorry, your question is not related to the template, please ask it on the Joomla forum: http://forum.joomla.org/
Regards, AS Team.
sidisdim
POSTED: 2012-09-20
how can i remove from anywhere h.mark.png and which padding i must change to send the text left.
AS Templates
POSTED: 2012-09-20
Hello SIDISDIM,
In case to remove the h.mark.png image you will need to go through all of the .css files, look for the following line:
background-image: url("../images/h.mark.png") and then delete it, the padding should be changed in the same class where you will delete the background image, for example please see tmpl.content.css file:
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
i just put the joomla offline with offline image but in ie8 offline image cant load!
plz help me!
Unknown column 'a.access' in 'on clause' SQL=SELECT a.*,ag.title AS access_level,l.home AS home FROM `j35_languages` AS a LEFT JOIN j35_viewlevels AS ag ON ag.id = a.access LEFT JOIN `j35_menu` AS l ON l.language = a.lang_code AND l.home=1 AND l.language <> '*' WHERE (a.published IN (0, 1)) ORDER BY a.title asc Unknown column 'a.access' in 'on clause' SQL=SELECT a.*,ag.title AS access_level,l.home AS home FROM `j35_languages` AS a LEFT JOIN j35_viewlevels AS ag ON ag.id = a.access LEFT JOIN `j35_menu` AS l ON l.language = a.lang_code AND l.home=1 AND l.language <> '*' WHERE (a.published IN (0, 1)) ORDER BY a.title asc LIMIT 0, 20 Unknown column 'a.access' in 'on clause' SQL=SELECT a.*,ag.title AS access_level,l.home AS home FROM `j35_languages` AS a LEFT JOIN j35_viewlevels AS ag ON ag.id = a.access LEFT JOIN `j35_menu` AS l ON l.language = a.lang_code AND l.home=1 AND l.language <> '*' WHERE (a.published IN (0, 1)) ORDER BY a.title asc
plz help me
Can you please provide us with an access to the Joomla admin panel, we have to check all these issue, thank You.
Regards, AS Team.
but the first problem about images and ie8 still remains! i tried to use .jpg as offline image with Site Offline enabled but the image didn't display in ie8,
next i tried to use .png as offline image with Site Offline enabled and it works correctly in ie8!
i tried also to use jpg in an article and it didn't displayed in ie8, next i tried again to use png and works with ie8
my issue now is if there is way to use .jpg images in offline image with Site Offline enabled and in an article,
i want to know how i can do that.
if you steel want me to provide you with an access to joomla admin plz explain me how i will do that.
thnk u
We are sorry, your question is not related to the template, please ask it on the Joomla forum: http://forum.joomla.org/
Regards, AS Team.
In case to remove the h.mark.png image you will need to go through all of the .css files, look for the following line:
background-image: url("../images/h.mark.png") and then delete it, the padding should be changed in the same class where you will delete the background image, for example please see tmpl.content.css file:
#colmain .row1 h1,
#colmain .row1 h2,
#colmain .row1 h3
{
background-image: url("../images/h.mark.png");
background-position: left top;
background-repeat: no-repeat;
border-bottom: 1px solid #FFFFFF;
margin: 0 0 35px;
padding: 0 0 20px 35px;
text-shadow: 1px 1px #FFFFFF;
text-transform: none;
}
Regards, AS Team.
i just wana change logo with the language selection
example
when my site is in en
use site logo->mycompanyEN.png
and when i was in greek
use site logo->mycompanyGR.png
i find in index.php that code
"
<div id="companyname">
<?php if(!$logo_type): ?>
<a href="<?php echo $this->baseurl; ?>" >
<img src="<?php echo $logo_img; ?>" alt="thermolith.gr"/>
</a>
<?php else: ?>
"
could i put something like ?
$lang =& JFactory::getLanguage();
if($lang->getTag() == 'en-GB'): ?>
could you help me with an example
We think it will work, but you have initialize the $logo_img variable,
<?php
if($lang->getTag() == 'en-GB')
$logo_img = 'full_path_to_the_EN_logo.png';
else
$logo_img = 'full_path_to_the_GR_logo.png';
?>
and put it before <head> closing tag in the index.php file.
Regards, AS Team.