Vikram,
If you want to remove the Powered By WordPress from the footer follow the instructions below:
Go to Editor in your WordPress website admin area. You need to open the theme-functions.php file.
Change this piece of code:
/**
* Site info
*/
function parabola_site_info() {
$parabolas = parabola_get_theme_options();
foreach ($parabolas as $key => $value) { ${“$key”} = $value ; } ?>
<div style=”text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:11px;”>
<?php _e(‘Powered by’,’parabola’)?> ” title=”<?php echo ‘Parabola Theme by ‘.
‘Cryout Creations’;?>”><?php echo ‘Paяabola’ ?> & “
title=”<?php esc_attr_e(‘Semantic Personal Publishing Platform’, ‘parabola’); ?>”> <?php printf(‘ %s.’, ‘WordPress’ ); ?>
</div><!– #site-info –>
<?php
} // parabola_site_info()
to this piece of code:
/**
* Site info
function parabola_site_info() {
$parabolas = parabola_get_theme_options();
foreach ($parabolas as $key => $value) { ${“$key”} = $value ; } ?>
<div style=”text-align:center;padding:5px 0 2px;text-transform:uppercase;font-size:11px;”>
<?php _e(‘Powered by’,’parabola’)?> ” title=”<?php echo ‘Parabola Theme by ‘.
‘Cryout Creations’;?>”><?php echo ‘Paяabola’ ?> & “
title=”<?php esc_attr_e(‘Semantic Personal Publishing Platform’, ‘parabola’); ?>”> <?php printf(‘ %s.’, ‘WordPress’ ); ?>
</div><!– #site-info –>
<?php
} // parabola_site_info() */
DONE!