Viewing 5 reply threads
You must be logged in to reply to this topic.
Hi,
I’m trying to set my blog settings just like the settings in the Handel Finance News section, so that the content is centered and empty space on the left and right, just like content in the header. Have changed the settings around, but no luck so far.
Hello,
Please can you send to us your wp credentials and online link on your profile details. So we can login into and investigate the issue.
Let us know.
Regards!
Hello,
Sorry for this issue. We will fix this problem in the next update that will come soon:
Please can you replace this function into this file “/includes/codeless_html_attrs.php” find the line:
function codeless_extra_classes_inner_content( $classes ) {
if( !codeless_get_meta( 'page_fullwidth_content', false ) )
$classes[] = 'container';
else
$classes[] = 'container-fluid';
return $classes;
}
replace with:
/**
* Manage all conditions for adding extra classes on Inner Content
* Don't modify this, use add_filter for modify codeless_extra_classes_inner_content
*
* @since 1.0.0
*/
function codeless_extra_classes_inner_content( $classes ) {
if( !codeless_get_meta( 'page_fullwidth_content', 'off', get_the_ID( ))== 'on')
$classes[] = 'container-fluid';
else
$classes[] = 'container';
return $classes;
}
Save the file and let us know.
Regards!
It’s not letting me save it in the Editor. Is FTP the only option? I currently don’t have the access to the clients server…
Thanks
Hello,
Without ftp you also can’t update the theme when the new update will come.
Let us know.
Regards!
You must be logged in to reply to this topic.