środa, 20 marca 2013

[joomla] Animated favicon




W directory templates/your_template
in find place( which generate favicon.ico )

<jdoc:include type="head" /> 

paste below line above:
 
 <link rel="shortcut icon" href="templates/<?php echo $this->template ?>/favicon.gif" />

wtorek, 19 marca 2013

[Linux] Can't open display



# please check listening on port 6000. You may use command below

netstat -an | grep -F 6000

# check existing line below

tcp     0   0 0.0.0.0:6000      0.0.0.0:*              LISTEN






# if you havn't line above run command below

socat -d -d TCP-LISTEN:6000,fork,bind=0.0.0.0 UNIX-CONNECT:/tmp/.X11-unix/X0

# if you haven't socat try line below

sudo apt-get install socat

piątek, 15 marca 2013

[Linux] Script on startup after session run



I put one script in  /etc/init.d/

cp yourScript.sh  /etc/init.d/yourScript.sh

chkconfig --add yourScript.sh
 
 
 
List autostart
 
chkconfig --list 

środa, 6 marca 2013

[CSS] Position on page



Examples

{
margin-top:20px;
margin-right:auto;
margin-bottom:20px;
margin-left:auto;
padding-top:0;
padding-right:10px;
padding-bottom:0;
padding-left:10px;
}

{
margin:20px auto 20px auto;
padding:0 10px 0 10px;
}

{
margin:20px auto;
padding:0 10px;
}

[Joomla] Multi-language



http://www.joomla-css.nl/index.php/en/?option=com_content&view=article&id=177&Itemid=488&lang=en
facebook