Forum Replies Created
-
AuthorPosts
-
MaheshParticipant
Hi @Paul,
The code is working is fine with the child theme. Do you get any errors or something? Do you have other modifications?
Please provide us with the
functions.php
of the child theme.Regards,
MaheshMaheshParticipantHi @Aveesh,
Catch Box Pro is a theme with boxed layout, the full-width for the page for all layout is 1000px whether the layout is full-with no sidebar or with sidebars.
Regards,
MaheshMaheshParticipantHi @Aveesh,
If you are trying to make the content’s width to 1400px just for one page, I recommend you to use the Custom CSS instead. Like the code below:
.page-id-630 .site{ width: 1400px; }
It will only make the site’s width to 1400px which is not enough, you have to also change the width of the inner contents per the new width and manage for responsive views too. I recommend you to hire a customizer.
If you prefer to use the function as in the above code, edit your function as below:
add_filter( ‘body_class’, ‘catchflames_child_more_body_classes’ );
function catchflames_child_more_body_classes( $class ) {
if ( is_page( 630 ) ) {
$class[] = ‘fixed-width-page’;
}
return $class;
}The above function will add “fixed-width-page” to body for that particular page only.
Regards,
MaheshMaheshParticipantHi @Aveesh,
Please post in your site url.
I assume you are using Catch Flames Pro. We do not have the file calledpage-fullwidth.php
in Catch Flames Pro.For this you can use the Custom CSS and get the specific page’s body class and change the width of the the content with-in that very class.
Or you can also add the desired body class by hooking a function into the
body_class
filter as follow:add_filter( 'body_class', 'catchflames_child_more_body_classes' ); function catchflames_child_more_body_classes( $class ) { $class[] = 'fixed-width-page'; return $class; }
Note: Add the above code in child theme’s
functions.php
.Regards,
MaheshMaheshParticipantHi @TripleY,
For changing color of the seperator, please use the following CSS.
#breadcrumb-list a span.sep { color: #ff0000; }
Regards,
MaheshMaheshParticipantHi @Robert,
I checked your site, iframe is there in the code, but for some reasons I cannot see the ad, is there any problem.
And where have you put the script for the iframe in the theme?Regards,
MaheshMaheshParticipantHi @andrewf90,
There is no padding in the page, the grey space in the either side is the background which is seen because of the boxed layout of the theme. By default, the width of the content is set to 1200px.
For reducing the padding around search box, you can add the following CSS in “Dashboard=> Appearance=> Theme Options=> Custom CSS” box.
.widget {
padding-right: 0;
}Let me know if I can help you further to this.
Regards,
MaheshMaheshParticipantHi @Len,
Please post in your site url.
Regards,
MaheshMaheshParticipantHi @benowchiro,
Go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS:
/* Homepage Headline Text Color and Background Color. */ #homepage-message { background-color: #444; color: #fff; } /* Homepage Headline Button Background Color. */ #homepage-message .right-section a { background-color: #ff0000; } /* Homepage Headline Button Hover Background Color. */ #homepage-message .right-section a:hover { background-color: #00ff00; }
Regards,
MaheshMaheshParticipantHi @SarahNeeve,
Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS:
#promotion-message .right .promotion-button:hover{ background-color: #ff0000; border-color: #0000ff; }
Note: Please change the background-color and border-color to your desired color’s hex value.
Regards,
MaheshMaheshParticipantHi @adunning,
Go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS:
/* For Page Title */ #content .page .entry-title{ font-weight: bold; font-size: 20px; font-family: Times New Roman; font-style: italic; } /* For Post Title */ #content .post .entry-title{ font-weight: bold; font-size: 20px; font-family: Times New Roman; font-style: italic; } /* For Post Content */ #content .post .entry-content{ font-weight: bold; font-size: 15px; font-family: Times New Roman; font-style: italic; } /* For Post Content */ #content .page .entry-content{ font-weight: bold; font-size: 15px; font-family: Times New Roman; font-style: italic; }
Note: Please change the CSS property’s value as per necessary.
Regards,
MaheshMaheshParticipantHi @shikarime,
For this you have to create child theme, replicate the core function (Calendar Widget) and customize it. This is out of theme support scope so I recommend you to hire a customizer for this.
Regards,
MaheshMaheshParticipantHi @Mark Argentino,
index.htm
is not included in WordPress core files. And the shortcode will only work with the theme files no the static html pages.
I haven’t faced such issues.
The redirects may be because of the plugins, please try deactivating the plugins one by one. If the plugin is trust-worthy you won’t lose the settings.Let me know if I can help you further.
Regards,
MaheshMaheshParticipantMaheshParticipantHi @Paul,
For this you have to create a child theme. You can find more details on how to create a child theme HERE. Then in your child theme’s
functions.php
add the following code.add_action( 'init' , 'catchkathmandu_child_move_menu_below_slider' ); function catchkathmandu_child_move_menu_below_slider() { remove_action( 'catchkathmandu_hgroup_wrap', 'catchkathmandu_header_right', 15 ); add_action( 'catchkathmandu_before_main', 'catchkathmandu_header_right', 15 ); }
Then go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS.
#header-right { float: none; }
Let me know if this fixes your issue.
Regards,
MaheshMaheshParticipantHi @rflores,
For the above code to work, you have to activate the child theme. After activating, you do not have to update the all the images. Please use Regenerate Thumbnail plugin to regenerate all the images with desired sized.
Regards,
MaheshMaheshParticipantHi @leotrim77,
This feature is available in Catch Responsive Pro by default. But if you want to remove it anyway, go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.
#site-generator { display: none; }
If you prefer to completely remove it hard-coded, then you have to do it creating the child theme.
Regards,
MaheshMaheshParticipantHi @Michaela,
The content’s style is out of theme scope. The style for content is as per how editor manages. As specified above, I tried the same with one more return/enter which puts
if you check it in code tab and is working fine.Regards,
MaheshMaheshParticipantHi @witgi,
Sorry for the late reply.
I just checked your site, now I see only one menu in mobile view. But I think you’ve made some customization, the menu looks different than default.
Let me know if you want to remove this hack. And thestyle.php
file, have you created it for the hack?Regards,
Mahesh -
AuthorPosts