Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

How to integrate Woo-shortcodes into another theme? WordPress

  • SOLVED

Hello,

I have more then 200 articles with a Woo-shortcodes (styled boxes, buttons, tabs, ...) and I would like to use a theme from iA3. Is it possible integrate Woo-shortcodes (which I like) into another theme? ;)

[I can send you both themes.]

Answers (2)

2011-05-01

Ryan Riatno answers:

Yes you could, take a look at the "functions" folder in your themes and open "admin-shortcodes.php".
You can copy that file to your new theme folder and include it in functions.php.


Rene Nekuda comments:

How I can include it in function.php? Sorry, I don't know how to do it? :(


Ryan Riatno comments:

Copy "admin-shortcodes.php" to your new theme folder. and put this in your new theme "functions.php"
<?php include_once('includes/admin-shortcodes.php');?>


Ryan Riatno comments:

I'm sorry I mean :
<?php include_once('admin-shortcodes.php');?>


Ryan Riatno comments:

Don't forget to copy the css. Open file "functions/css/shortcodes.css" and copy all css code to your new theme "style.css".


Ryan Riatno comments:

Okay if you having trouble with that, please attach your new theme "functions.php" and "style.css".


Rene Nekuda comments:

<strong>function.php:</strong>

<?php
/**
*
* iA³ (Back) generates the options pages within the Wordpress Administration area and allows users to
* modify several aspects of the iA³ theme. Currently, these are the header/footer navigation items, the
* type of search they want to use and the Twitter accounts used by the Tweets template. And the colour
* used for links and (some) headings.
*
* @author Ben Sekulowicz-Barclay (iA).
*
**/

class ia3_back {

/**
* @access public
* @return void
*
*/

public function do_setup() {
add_menu_page('iA³', 'iA³', 'administrator', 'ia3', array('ia3_back', 'display_admin_page'));
add_option('ia3_options', '', '', 'yes');
}

/**
* @access public
* @return void
*
*/

public function display_admin_page() {
// If we are saving from somewhere ...
if (isset($_GET['save']) && $_GET['save'] == 1) {

// Saving from tab #1: Navigation
if (isset($_GET['tab']) && $_GET['tab'] == 1) {
ia3_back::save_tab_1();

// Saving from tab #2: Miscellaneous
} elseif (isset($_GET['tab']) && $_GET['tab'] == 2) {
ia3_back::save_tab_2();
}
}

include('admin_page.php');
}

/**
* @access public
* @return void
*
*/

static function save_tab_1() {
$fields = array(array('Header', 4, 4), array('Contact', 4, 4), array('Footer', 4, 1));

foreach($fields as $field) {
for($i = 1; $i <= $field[1]; $i++) {
for($j = 1; $j <= $field[2]; $j++) {

$key = $field[0] . '-' . $i . '-' . $j;

if ((isset($_POST['S-' . $key])) && ($_POST['S-' . $key] != '-1')) {
ia3_helpers::set_option($key, $_POST['S-' . $key]);
} else {
ia3_helpers::set_option($key, $_POST['I-' . $key]);
}
}
}
}

// Display an error/success message here?
echo '<div class="updated" id="message"><p>' . __('Your navigation settings have been successfully updated', 'ia3') . '</p></div>';

return true;
}

/**
* @access public
* @return void
*
*/

static function save_tab_2() {
ia3_helpers::set_option('Colours-1', $_POST['Colours-1']);
ia3_helpers::set_option('Colours-2', $_POST['Colours-2']);
ia3_helpers::set_option('Logo', $_POST['Logo']);

// Display an error/success message here?
echo '<div class="updated" id="message"><p>' . __('Your miscellaneous settings have been successfully updated', 'ia3') . '</p></div>';

return true;
}
}

if (function_exists('add_action')) {
add_action('admin_menu', array('ia3_back', 'do_setup'));
}

/**
*
* iA³ (Helpers) contains several helpers that allow the theme to perform
* as it should, as well as adding a few extra pieces of functionality when needed.
*
* @author Ben Sekulowicz-Barclay (iA).
*
**/

class ia3_helpers {

/**
* @param string
* @return string
* @author Ben Sekulowicz-Barclay
*
* Returns the page based on the ID, (key) passed to it.
*
**/

static function get_category($key = '') {
$cs = get_categories();

foreach($cs as $c) {
if ($c->cat_ID == $key) return $c;
}

return $cs[0];
}

/**
* @param string
* @return string
* @author Ben Sekulowicz-Barclay
*
* Returns the page based on the ID, (key) passed to it.
*
**/

static function get_page($key = '') {
$ps = get_pages();

foreach($ps as $p) {
if ($p->ID == $key) return $p;
}

return $ps[0];
}

/**
* @access static
* @param string
* @param string
* @return string
*
*/

static function get_option($key, $default = '') {
$array = get_option('ia3_options');

return (is_array($array) && isset($array[$key]))? $array[$key]: $default;
}

/**
* @access static
* @param string
* @return string
*
*/

static function set_option($key, $value) {
$array = get_option('ia3_options');
if (!is_array($array)) $array = array();

$array[$key] = $value;

update_option('ia3_options', $array);
}

/**
* @access static
* @param string
* @return string
*
*/

static function get_nav_cell($key = '', $default = '') {
$array = array();
$value = ia3_helpers::get_option($key);

if ($value == '') return $default;

if (preg_match("/^c\-(.*)/", $value, $array)) {
$item = ia3_helpers::get_category($array[1]);

$item_i = isset($item->cat_ID)? $item->cat_ID: 0;
$item_n = isset($item->name)? $item->name: __('Unknown', 'ia3');
$item_l = get_category_link($item_i);

if (strpos($item_l . '***', $_SERVER['REQUEST_URI'] . '***')) {
return '<strong><a href="' . $item_l . '">' . $item_n . '</a></strong>';
} else {
return '<a href="' . $item_l . '">' . $item_n . '</a>';
}

} else if (preg_match("/^p\-(.*)/", $value, $array)) {
$item = ia3_helpers::get_page($array[1]);

$item_i = isset($item->ID)? $item->ID: 0;
$item_n = isset($item->post_title)? $item->post_title: __('Unknown', 'ia3');
$item_l = get_page_link($item_i);

if (strpos($item_l . '***', $_SERVER['REQUEST_URI'] . '***')) {
return '<strong><a href="' . $item_l . '">' . $item_n . '</a></strong>';
} else {
return '<a href="' . $item_l . '">' . $item_n . '</a>';
}
} else {
$item_l = stripslashes($value);
$item_u = array();

if (preg_match("/^<a(.+)href=\"(.+)\"(.+)<\/a>$/", $item_l, $item_u)) {

if (isset($item_u[2]) && strpos($item_u[2] . '***', $_SERVER['REQUEST_URI'] . '***')) {
return '<strong>' . $item_l . '</strong>';
} else {
return $item_l;
}
}

return $item_l;
}
}

/**
* @access static
* @param string
* @return void
*
*/

static function put_nav_cell($key = '') {
$cs = get_categories();
$ps = get_pages();

$selected = FALSE;
?>
<div style="margin-bottom:6px;margin-right:24px">
<select name="S-<?php echo $key; ?>">
<option value="-1"></option>
<optgroup label="<?php _e('Categories', 'ia3'); ?>">
<?php
foreach($cs as $c):
if (ia3_helpers::get_option($key) == "c-" . $c->term_id):

$selected = TRUE;
?>
<option value="c-<?php echo $c->term_id; ?>" selected="selected"><?php echo $c->name; ?></option>
<?php else: ?>
<option value="c-<?php echo $c->term_id; ?>"><?php echo $c->name; ?></option>
<?php endif; endforeach; ?>
</optgroup>
<optgroup label="<?php _e('Pages', 'ia3'); ?>">
<?php
foreach($ps as $p):
if (ia3_helpers::get_option($key) == "p-" . $p->ID):

$selected = TRUE;
?>
<option value="p-<?php echo $p->ID; ?>" selected="selected"><?php echo $p->post_title; ?></option>
<?php else: ?>
<option value="p-<?php echo $p->ID; ?>"><?php echo $p->post_title; ?></option>
<?php endif; endforeach; ?>
</optgroup>
</select>
</div>
<div style="margin-right:38px">
<?php if($selected == TRUE): ?>
<input class="isInputText isInputMono" name="I-<?php echo $key; ?>" value="" />
<?php else: ?>
<input class="isInputText isInputMono" name="I-<?php echo $key; ?>" value="<?php echo htmlspecialchars(stripslashes(ia3_helpers::get_option($key, '<a href="#">' . __('Page Name', 'ia3') . '</a>'))); ?>" />
<?php endif; ?>
</div>
<?php
return;
}
}

/**
*
* Prevent Wordpress loading it's own version of jQuery, (use Google's instead)...
* - http://www.mogmachine.com/stop-wordpress-loading-jquery-in-wp_head/
*
**/

if (!is_admin()) {
wp_deregister_script('jquery');
wp_register_script('jquery', ('http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js'), false, '1.4.2');
wp_enqueue_script('jquery');
}

/**
*
* Setup any other functionality that occurs outside of the class structure.
*
**/

if (function_exists('register_sidebar')) {
register_sidebar(array('before_widget' => '', 'after_widget' => '', 'before_title' => '<h1>', 'after_title' => '</h1>'));
}

if (function_exists('add_theme_support')) {
add_theme_support('post-thumbnails');
}

if (function_exists('load_theme_textdomain')) {
load_theme_textdomain('ia3', TEMPLATEPATH . '/languages');
}
?>


<strong>style.css:</strong>
/**
* Theme Name: iA3
* Theme URI: http://informationarchitects.jp/downloads/ia3/
* Description: A simple HTML5 wordpress theme based on Information Architects' website.
* Version: 1.1.1
* Author: Information Architects
* Author URI: http://informationarchitects.jp/
* Tags: monochrome,fixed width,simple,typographic,html5
**/

@media all{html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,svg,time,mark,audio,video{background:transparent;border:0;font-size:100%;margin:0;padding:0;outline:0;vertical-align:baseline}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,img,menu,nav,section,svg{display:block}.ie img{-ms-interpolation-mode:bicubic}nav ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}a{background:transparent;font-size:100%;margin:0;padding:0;vertical-align:baseline}ins{background-color:#ff9;color:#000;text-decoration:none}mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted inherit;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{border:0;border-top:1px solid #cccccc;display:block;height:1px;margin:1em 0;padding:0}input,select{vertical-align:middle}}@media screen{body{background:#FFF;border-top:solid .3em #000;font-size:100%}.implied{clip:rect(1px,1px,1px,1px);position:absolute !important}.ielt8 .implied{height:1px;left:-999px;overflow:hidden;position:absolute;text-indent:-999px;top:-999px;width:1px}address,blockquote,caption,cite,code,dl,figcaption,h1,h2,h3,h4,h5,h6,label,legend,ol,p,pre,ul,table{display:block;font:normal normal 400 1em/1.5em Georgia,Serif;list-style:none;margin:0 0 1.5em;text-rendering:optimizeLegibility}dd,dt,li{display:block;margin:0;padding:0}li{display:list-item}dd:last-child,dl:last-child,dt:last-child,li:last-child,ol:last-child,ul:last-child,p:last-child{margin-bottom:0 !important}.ielt9 dd.lastChild,.ielt9 dl.lastChild,.ielt9 dt.lastChild,.ielt9 li.lastChild,.ielt9 ol.lastChild,.ielt9 ul.lastChild,.ielt9 p.lastChild{margin-bottom:0 !important}a{color:#00F;text-decoration:underline}a:hover{color:#00A;text-decoration:none}a:visited{color:#00A}abbr,acronym{border:none;cursor:help}a abbr,a acronym{cursor:pointer}hr{border:none;background-color:#EEE;height:.1em;margin:1.45em 0 1.4em}pre,code,kbd,samp{font-family:monospace,sans-serif}button,input,label,select,textarea{display:block;font-size:1em;line-height:1.5em}button,input,select,textarea{float:left;margin-right:.5em}button,input,select{font-family:arial,sans-serif}textarea{border:solid .1em #666;border-radius:.225em;-moz-border-radius:.225em;-webkit-border-radius:.225em;font:normal normal 400 .75em/2em monospace,serif;padding:0 .3em}input[type=submit]{background:#EEE;background:-moz-linear-gradient(top,#F7F7F7,#E6E6E6);background:-webkit-gradient(linear,left top,left bottom,from(#F7F7F7),to(#E6E6E6));border:solid .1em #666;border-radius:.3em;-moz-border-radius:.3em;-webkit-border-radius:.3em;font-size:75%;font-weight:700;height:2em;padding:0 .5em;text-shadow:#F7F7F7 0 .1em 0}.ielt9 input[type=submit]{-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#F7F7F7,endColorstr=#E6E6E6)";filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#F7F7F7,endColorstr=#E6E6E6)}input[type=text]{background:#FFF;border:solid .1em #666;border-radius:.225em;-moz-border-radius:.225em;-webkit-border-radius:.225em;height:1em;line-height:1em;padding:0 .25em;padding:.25em .2em .15em;width:8.875em}input[type=text]:active,input[type=text]:focus{outline:none}form ol li label{font-size:87.5%;line-height:1.71428571em;margin-bottom:0}form ol li label:after{content:":"}form ol li input[type=text]{width:18.5em}.G1,.G2,.G3,.G4,.G5,.G6{clear:none !important;float:left;margin-left:1.125em}.GS{margin-left:0}.GR{float:right}.G1{width:8.875em}.G1 .G1{margin-left:0}.G1 .G2{margin-left:-10em}.G1 .G3{margin-left:-20em}.G1 .G4{margin-left:-30em}.G1 .G5{margin-left:-40em}.G1 .G6{margin-left:-50em}.G2{width:18.875em}.G2 .G2{margin-left:0}.G2 .G3{margin-left:-10em}.G2 .G4{margin-left:-20em}.G2 .G5{margin-left:-30em}.G2 .G6{margin-left:-40em}.G3{width:28.875em}.G3 .G3{margin-left:0}.G3 .G4{margin-left:-10em}.G3 .G5{margin-left:-20em}.G3 .G6{margin-left:-30em}.G4{width:38.875em}.G4 .G4{margin-left:0}.G4 .G5{margin-left:-10em}.G4 .G6{margin-left:-20em}.G5 .G5{margin-left:0}.G5{width:48.875em}.G5 .G6{margin-left:-10em}.G6{width:58.875em}.G6 .G6{margin-left:0}.HSC{font-size:75%;height:2em;letter-spacing:.1em;line-height:2em;text-transform:uppercase}label.HSC{margin-bottom:0}.containsAddress dd,.containsAddress dt{float:left}.ielt8 .containsAddress dd{clear:left;margin-bottom:.75em}.containsAddress dt{clear:left;margin-right:.33em}.containsAddress dt.url,.containsAddress dd.address{clear:left;margin-top:1.5em;width:100%}.containsAddress dd address{margin:0}.containsArticles{margin-bottom:3em}.containsArticles dd{background:transparent 0 100% repeat-x;margin-bottom:1.5em;padding-bottom:1.5em}.containsArticles dd:last-child{background:transparent !important;margin-bottom:0;padding-bottom:0}.ielt9 .containsArticles dd.lastChild{background:transparent !important;margin-bottom:0;padding-bottom:0}.containsArticles dd :last-child{margin-bottom:0}.ielt9 .containsArticles dd .lastChild{margin-bottom:0}.containsArticles dt{margin-bottom:.75em;position:relative}.containsArticles dt .title{color:#000 !important;display:block;font-size:131.25%;line-height:1.14285714em}.containsArticles dt .date{color:#888;display:block;font:normal italic 400 87.5%/1.71428571em Georgia,Serif;left:-21.5714286em;margin-top:.85714286em;position:absolute;text-align:right;width:20.2857143em}.containsArticles dt a{text-decoration:none}.containsArticles dt a:hover{text-decoration:underline}.containsComments{margin-bottom:3em}.containsComments dd{margin-bottom:2.25em;margin-top:.75em;padding-left:1.5em}.containsComments dt .date{color:#888;font:normal italic 400 87.5%/1.71428571em Georgia,Serif;white-space:nowrap}.containsFollowers{list-style:none !important;margin:0 0 0 0}.containsFollowers li{float:left;height:2.5916667em;margin:0;width:2.5916667em}.containsFollowers:hover li{opacity:.5}.containsFollowers li:hover{opacity:1}.containsFollowers img{height:2.4916667em;width:2.4916667em}.containsGalleries,.containsGallery{list-style:none !important;padding:0 !important}.containsGalleries h1,.containsGalleries h2,.containsGalleries h3{font-size:75% !important;left:-26.6666667em;letter-spacing:.1em;line-height:2em;margin:0 !important;text-transform:uppercase;top:0;position:absolute;text-align:right;width:25.1666667em}.containsGalleries li{display:block;margin-bottom:1.5em;position:relative}.containsGallery{clear:left;margin:0 0 0 -1.125em}.ielt8 .containsGallery{margin-bottom:1.5em}.containsGallery li{display:block;margin:0 0 1.5em 1.125em !important;overflow:hidden}.containsFollowers a,.containsFollowers img,.containsGallery a,.containsGallery img{display:block;margin-bottom:0 !important}.containsGallery a{border:solid .1em #888}.containsGallery img{width:100%}#containsTweets{list-style:none !important}#containsTweets li{display:block;margin-bottom:1.5em;padding:0 0 0 3.75em;position:relative}#containsTweets img{border:solid .1em #888;height:2.8em;left:0;position:absolute;top:0;width:2.8em}#containsTweets blockquote{background:transparent;margin:0;padding:0}.ielt8 #containsTweets blockquote{margin-top:-1.5em}#containsTweets p{color:#888;font-size:87.5%;line-height:1.71428571em;margin:0}#containsTweets p a{text-decoration:none}#containsTweets p a:hover{text-decoration:underline}#containsTweets blockquote p{color:#000;font-size:1em;line-height:1.5em}#containsTwoosers{background:transparent 0 0 repeat-x;list-style:none !important;margin-bottom:0;padding-top:1.5em}#containsTwoosers li{display:block;margin-bottom:1.5em;position:relative}#containsTwoosers img{border:solid .1em #888;height:1.8em;left:0;position:absolute;top:0;width:1.8em}#containsTwoosers h2,#containsTwoosers h3,#containsTwoosers h4{margin:0 !important}#containsTwoosers h2{font-size:100% !important;line-height:2em !important;margin-bottom:0 !important;padding:0 0 0 2.5em}#containsTwoosers h2 a{text-decoration:none}#containsTwoosers h2 a:hover{text-decoration:underline}#containsTwoosers h3,#containsTwoosers h4{font-size:87.5% !important;line-height:1.71428571em !important}#content{margin-top:1em;padding-bottom:3em}#content aside{clear:left;float:left;margin-left:-20em;position:absolute;width:18.875em}#content aside p,#content aside ol,#content aside ul{font:normal normal 75%/1.5em arial,sans-serif;margin-bottom:1.5em;padding:0 !important}#content header{margin-bottom:2em;position:relative}#content header h1{font-size:200%;line-height:1.3334em;margin-bottom:0}#content header h2{font-size:87.5%;font-style:italic;line-height:1.71428571em;margin:0}#content header nav{left:-20em;margin-top:-1.5em;position:absolute;width:18.875em}#content header nav ul{text-align:right}#content header nav li{font:normal normal 400 87.5%/1.71428571em Georgia,Serif;display:inline}#content header nav li:after{content:" | "}#content header nav li:last-child:after{content:""}.ielt9 #content header nav li.lastChild:after{content:""}#content h2{font-size:150%;line-height:1.5em;margin-bottom:1em;margin-top:2em}#content h3{font-size:125%;line-height:1.2em;margin-bottom:1.2em;margin-top:1.2em}.formatted{position:relative}.formatted blockquote{background:#FFF url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAQCAYAAAD52jQlAAAACXBIWXMAAAsTAAALEwEAmpwYAAABnklEQVQ4EZWToZLCQAyGw85NMdR0MK2hCtUqFCgUmPICfTsEb1CFAoVCFQOKGjCAAQOG65+77Cy0ywwR3W3ybTbZJI1nKWSR6/VK6/WaDocDpWlqof7Up9OJVqsVua5LPzYyz3N2+Hg8GIHjIAgq+P1+Z26z2bDteDxWnQKaz+cEI6TValGv16t1iOjA3m43Zj3Po8Fg8OoUUJZlJNFFUcQOm80mHzI/2+2W0wXrOA5zcRwzotM3HQIaDocUhqHpR+/3+z0tl0v+Ryaj0Yja7ba2s1NJWSJMkuQF0nS5weWLxYJVuHwymXBxTEbhB5C8S7/ftzoUVi5HhKj2uyhUtSgK1iMVeZd3EP94x8vlwibf92uLB6Pa7XYM4WN7QwHQZiKfLm/MZrOnpC4HsCIS8ynw7tPp1ET0vtvtMitdouocgkafYkJEzuezbCsrsjVZLlSF+lfIANjsph4jLfLRqUDfrgq9ZpNOp6NNda2jjeUGNRBRtorjMsyxCJyaB0WPFTNvdoNChVE9U9CvmKr36NDsZvQ4g4vG4zFJ5aH7BYMAsaH2qs0LAAAAAElFTkSuQmCC) 0 0 no-repeat;background-size:1.3125em 1em;color:#888;margin:3em 0 1.5em;padding:0 0 0 2.0625em}.ielt8 .formatted blockquote{/* Strange bug in IE 7 means a background-color MUST be set for this image to appear ... ? */ background-color:#FFF;background-image:url(assets/img/bg-blockquote.png)}.formatted img,.formatted object,.formatted video{margin-bottom:1.5em;max-width:100%}.formatted img.G5{max-width:48.75em}.formatted img.G6{max-width:58.75em}.formatted object,.formatted video{width:100% !important}.formatted ol{list-style:outside decimal}.formatted ul{list-style:outside disc}.formatted p code{font-size:100%;margin:0}.formatted cite{font:normal italic 400 87.5%/1.71428571em Georgia,Serif;text-align:right}.formatted hr{display:none}#screen{margin:0 auto;padding:3em 0;width:58.875em}#screen > footer .HSC,#screen > header .HSC{height:2em;margin-bottom:0}#screen > footer ul,#screen > header h1,#screen > header ul{margin-bottom:0 !important}#screen > footer li li,#screen > header li li{font-size:87.5%;letter-spacing:0;line-height:1.5em;text-transform:none}#screen > header{background:transparent 0 100% repeat-x;margin-bottom:1.5em;padding-bottom:1.5em}#screen > header form{display:none}#screen > header h1{padding-bottom:.25em;padding-top:1.75em}#screen > header h1 img{height:3.4375em}#screen > header a{color:#000 !important;display:block;text-decoration:none}#screen > header a:hover{text-decoration:underline}#screen > header strong a{background:transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAGCAAAAADBUmCpAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAHklEQVQIHWOI/PT/P4MxkGQwNra/CSV8bv5nAEkAANIFDmMxRyBPAAAAAElFTkSuQmCC) 0 50% no-repeat;background-size:.25em .375em;-moz-background-size:.25em .375em;-webkit-background-size:.25em .375em;font-weight:400;margin-left:-.75em;padding-left:.75em}.ielt8 #screen > header strong a{background-image:url(assets/img/bg-bullet.png)}#screen > footer{clear:both}#screen > footer > nav > ul{background:transparent 0 0 repeat-x;margin-top:1.5em;padding-top:1.5em}#screen > footer > nav > ul strong a{font-weight:400}#footerOne{margin-top:4.5em}#footerTwo li{font-size:75%;float:left;letter-spacing:.1em;line-height:2em;margin:0 .75em 0 0;text-transform:uppercase}#footerTwo li:last-child{float:right;letter-spacing:0;margin:0 0 0 .75em;text-transform:none}.ielt9 #footerTwo li.lastChild{float:right;letter-spacing:0;margin:0 0 0 .75em;text-transform:none}#screen > footer #footerTwo li a{color:#000 !important;text-decoration:none}#footerTwo li a:hover{text-decoration:underline}.archives #content fieldset{background:transparent 0 100% repeat-x;margin-bottom:0;margin-top:1.5em;padding-bottom:1.5em}.archives #content fieldset input[type=text]{width:28.875em}.ielt8 .contact #content .G4{margin-right:1.125em}.ielt8 .contact #content .G2{margin-left:-1.125em}.contact #content img{border:solid .1em #888;margin-bottom:1.5em;width:38.675em}.index #content{padding-bottom:0}.index #content .G4{padding-bottom:3em}.index #content .G6{background:transparent 0 100% repeat-x;margin-bottom:1.5em;padding-bottom:1.5em}.index #content .G6 img{margin-bottom:1.5em;width:58.875em}.index #content .G6 h1{margin:0 !important}.index #content .G6 h2{font-size:200%;line-height:1.3334em;margin:0 0 .375em !important}.index #content .G6 h2 a{color:#000 !important;text-decoration:none}.index #content .G6 h2 a:hover{text-decoration:underline}.index #content .G6 hgroup,.index #content .G6 .formatted{padding-left:20em}.csscolumns .index #content .G6 hgroup,.csscolumns .index #content .G6 .formatted{padding-left:0}.csscolumns .index #content .G6 .formatted{column-count:3;column-gap:1.125em;-moz-column-count:3;-moz-column-gap:18px;-webkit-column-count:3;-webkit-column-gap:1.125em}.index .containsArticles dd{background:transparent !important;margin-bottom:1.5em;padding-bottom:0}.single #comments{margin-top:3em}.single #comments form{background:transparent 0 0 repeat-x;padding-top:3em}.single #comments form label{color:#000 !important;display:block}.single #comments form li{margin-bottom:.75em}.containsArticles dd,#containsTwoosers,#screen > header,#screen > footer > nav > ul,.archives #content fieldset,.index #content .G6,.single #comments form{background-image:url(data:image/png;base64,R0lGODlhSAABAIAAAP///2ZmZiH5BAEHAAAALAAAAABIAAEAAAINDG54kLwNn1TU1XhXAQA7)}.ielt8 .containsArticles dd,.ielt8 #containsTwoosers,.ielt8 #screen > header,.ielt8 #screen > footer > nav > ul,.ielt8 .archives #content fieldset,.ielt8 .index #content .G6,.ielt8 .single #comments form{background-image:url(assets/img/bg-border-h.gif)}fieldset:after,fieldset ol li:after,#screen:after,.containsAddress:after,.containsFollowers:after,.containsGallery:after,.containsGrid:after,.G1:after,.G2:after,.G3:after,.G4:after,.G5:after,.G6:after,#screen > footer:after,#screen > header:after,#screen > header nav:after{clear:both;content:'.';display:block;height:0;visibility:hidden}.ielt9 fieldset,.ielt9 fieldset ol li,.ielt9 #screen,.ielt9 .containsAddress,.ielt9 .containsFollowers,.ielt9 .containsGalleries li,.ielt9 .containsGallery,.ielt9 .containsGrid,.ielt9 .G1,.ielt9 .G2,.ielt9 .G3,.ielt9 .G4,.ielt9 .G5,.ielt9 .G6,.ielt9 #screen > footer,.ielt9 #screen > header,.ielt9 #screen > header nav{zoom:1}}@media screen and (min-width:1440px){body{font-size:112.5%}}@media screen and (max-width:1024px){body{font-size:100%;overflow-x:hidden}address,blockquote,caption,cite,code,dl,figcaption,h1,h2,h3,h4,h5,h6,label,legend,ol,p,pre,ul,table{-webkit-text-size-adjust:none !important}form ol li input[type=text]{width:75%}form ol li textarea{width:99%}.G1,.G2,.G3,.G4,.G5,.G6{clear:both;float:none;margin:0 0 1.5em;width:100%}.containsArticles dt .date{left:auto;position:relative;text-align:left;top:auto;width:auto}.containsArticles dt .title{line-height:1.3334em}.containsGalleries h1,.containsGalleries h2,.containsGalleries h3{left:auto;margin-bottom:2em !important;top:auto;position:relative;text-align:left;width:auto}.containsGallery li{float:left;width:7.90625em}.containsGallery li img{margin:0 !important}.containsFollowers li{height:2.333em;width:2.333em}.containsFollowers img{height:2.233em;width:2.233em}#containsTwoosers > li{float:left;width:33.3%}#content{margin-bottom:3em;margin-top:1.5em}#content aside{background:#EEE;float:none;margin:0 0 2em;padding:1em;width:auto}.formatted img,.formatted object,.formatted video{margin:0 0 1.5em !important;max-width:100% !important}.formatted object,.formatted video{width:100% !important}.formatted img.G4,.formatted img.G5,.formatted img.G6,.contact #content img{width:100% !important}.formatted ol,.formatted ul{list-style-position:inside}#screen{margin:6.375em auto 2.25em;padding:0;width:35em}#screen > header form{display:block}#screen > header label{clip:rect(1px,1px,1px,1px);position:absolute !important}#footerOne > li{float:left;margin-bottom:0;width:25%}#footerOne > li:nth-child(1){display:none;width:100%}#footerTwo > :last-child{float:left !important;margin-left:0 !important;margin-top:1.5em !important}.index #content .G6 img{width:100%}.index #content .G6 hgroup,.index #content .G6 .formatted{padding-left:0 !important}.csscolumns .index #content .G6 .formatted{column-count:1;column-gap:0;-moz-column-count:1;-moz-column-gap:0;-webkit-column-count:1;-webkit-column-gap:0}.index #content .G4{background:transparent url(data:image/png;base64,R0lGODlhSAABAIAAAP///2ZmZiH5BAEHAAAALAAAAABIAAEAAAINDG54kLwNn1TU1XhXAQA7) 0 0 repeat-x;margin-top:1.5em;padding-top:1.5em}.single #content header{padding-top:1.5em}.single #content header nav{left:0;margin:0;top:0;width:auto}.single #content header nav ul{text-align:right}}@media screen and (min-width:596px) and (max-width:1024px){#screen > header h1,#screen > header nav,#headerOne > li,#headerTwo > li li{float:left}#screen > header h1{width:33.333%}#screen > header nav{width:66.666%}#headerOne > li{margin-bottom:0;width:33.333%}#headerTwo > li h2,#headerTwo > li li span{clip:rect(1px,1px,1px,1px);position:absolute !important}#screen > header form{background:#EEE;border-bottom:solid .1em #D6D6D6;height:3em;left:0;position:absolute;right:0;top:.3em}#screen > header form fieldset{margin-right:-17.5em;position:absolute;right:50%;top:.75em}#headerTwo{margin-left:-18.625em;position:absolute;left:50%;top:1.05em;width:auto;text-shadow:#FFF 0 1px 0}#headerTwo > li h2{clip:rect(1px,1px,1px,1px);position:absolute !important}#headerTwo > li li{font:normal normal 75%/2em arial,sans-serif !important;margin-left:1.5em}}@media screen and (max-device-width:1024px) and (width:1024px){body{font-size:131.25%}}@media screen and (max-device-width:1024px) and (width:768px){body{font-size:112.5%}}@media screen and (max-width:595px){body{font-size:100%}.HSC{font-size:87.5% !important;height:auto !important;line-height:1.71428571em;margin-bottom:.85714286em}.containsFollowers li{height:2.775em;width:2.775em}.containsFollowers img{height:2.675em;width:2.675em}.containsGalleries h1,.containsGalleries h2,.containsGalleries h3{font-size:93.75% !important;line-height:1.6em !important;margin-bottom:1.6em !important}.containsGallery li{width:6.09375em}#containsTwoosers > li{width:50%}#screen{margin-bottom:1.125em;margin-top:0;width:27.75em}#screen > header{position:relative}#screen > header h1{width:50%}#screen > header a{margin-bottom:0 !important}#screen > header form{bottom:1.75em;position:absolute;left:66.666%;right:0;top:1.75em}#screen > header fieldset:nth-child(1){display:none}#screen > header select{background:#FFF;border:solid .1em #888;font-size:87.5%;margin:0;position:absolute;width:100%}#screen > header select#mobile-menu{top:0}#screen > header select#mobile-lang{bottom:0}#headerOne,#headerTwo{display:none}#footerOne > li{width:50%}#footerOne > li:nth-child(1){display:block}#footerOne li,#footerTwo li:last-child{font-size:93.75% !important;line-height:1.6em;margin-bottom:0}#footerOne > li:nth-child(1),#footerOne > li:nth-child(2),#footerOne > li:nth-child(3){margin-bottom:1.5em}#footerTwo li{font-size:87.5% !important;line-height:1.71428571em}}@media screen and (max-width:479px){body{font-size:100%}.containsFollowers li{height:1.775em;width:1.775em}.containsFollowers img{height:1.675em;width:1.675em}.containsGallery li{width:8.3125em}#containsTwoosers > li{width:100%}#screen{width:17.75em}#screen > header form{left:50%}}


Ryan Riatno comments:

I'm forgot there is no attach file features on wpquestions :D. Can you send me via email?
"[email protected]"

2011-05-01

David Navarrete answers:

search on plugins, or functions.php

the functions that containt those shortcodes