Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@Vitaliy: Please add in widgets in your header right sidebar and post in your site URL here. Then I will check in your site and suggest you the custom css.
Sakin
Keymaster@Stephen: I have already given you the instruction for advance customization. I will explain it little more. First, you need to build child theme. Then you can copy the functions which you want to edit to your child theme
functions.phpfile.
1. Functioncatchresponsive_featured_content_display()is the final function which display the featured content. It checks which featured content type you have selected.
2. Functioncatchresponsive_post_content()is the function which handles the featured post content. So, if you have selected Featured Post slider then you might want to check this. For page it will becatchresponsive_page_content(), category will becatchresponsive_category_content()and image will becatchresponsive_image_content()Sakin
Keymaster@toni: You have issue in your child theme css. Are you sure that CSS is given by FontSquirrel. There is issue with url it cannot be
'fonts'atrament_regular-webfont.eot'and should be'fonts/atrament_regular-webfont.eot'. So, you need to replace that all. For example, replace the following css:@font-face { font-family: 'atramentregular'; src: url('fonts'atrament_regular-webfont.eot'); src: url('fonts'atrament_regular-webfont.eot?#iefix') format('embedded-opentype'), url('fonts'atrament_regular-webfont.woff2') format('woff2'), url('fonts'atrament_regular-webfont.woff') format('woff'), url('fonts'atrament_regular-webfont.ttf') format('truetype'), url('fonts'atrament_regular-webfont.svg#atramentregular') format('svg'); font-weight: normal; font-style: normal; }with this
@font-face { font-family: 'atramentregular'; src: url('fonts/atrament_regular-webfont.eot'); src: url('fonts/atrament_regular-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/atrament_regular-webfont.woff2') format('woff2'), url('fonts/atrament_regular-webfont.woff') format('woff'), url('fonts/atrament_regular-webfont.ttf') format('truetype'), url('fonts/atrament_regular-webfont.svg#atramentregular') format('svg'); font-weight: normal; font-style: normal; }Sakin
Keymaster@toni: Can you send me your site URL and let me know what are you trying to do it. Then I can check in.
Sakin
Keymaster@annebelle: You can try adding in the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
#site-branding, #site-logo { display: block; margin: 0; padding: 0; } .sidebar-header-right { display: none; }Sakin
Keymaster@toni: Then open your child theme style.css and add your css given by FontSquirrel. If you have stylesheet.css in your font folder then you can add the following css:
@import url('fonts/stylesheet.css');Sakin
Keymaster@harish: Sorry, your site in not working so I am not able to check in where exactly you wanted and your settings.
1. If you have A static page in your Front page displays from “Settings => Reading”, then you can simple add that shortcode in that page.
2. If you have added in Footer area from “Appearance => Widgets”, then you can control widget visibility to show that widget only in homepage. For that you need to use plugin like “JetPack” and activate “Widget Visibility” module.Sakin
KeymasterOk Done. Can you check your email now.
Sakin
Keymaster@Christine: You need to remove the following css from “Appearance => Theme Options => Custom CSS” box:
.home .type-page { display: none; }Sakin
Keymaster@Hair Bear: I have already replied you in http://catchthemes.com/support-forum/topic/decrease-slider-size-and-remove-white-spaces-in-catch-everest-pro/page/2/
Sakin
Keymaster@rojtalbot: I don’t get it what do you mean by you cannot find an option to blank the homepage. Sorry, I don’t understand it.
Sakin
Keymaster@Jonathan: Can you go to “Jetpack” plugin settings and deactivate “Photon” module and check in.
Sakin
Keymaster@Tobias: try changing plugin or contact plugin author. They must have support and documentation.
Sakin
Keymaster@Tobias: If you have post in both the site then you might want to check with the language plugin author support forum. This is more of plugin issue. Full Frame Pro theme is compatible with multi-language plugin like WPML, Polylang, qTranslate X, mqTranslate and qTranslate Plugins. It has been validated by WPML.
Sakin
Keymaster@Michael: Yes, you can change the background image just for block quotes using the following css:
#content blockquote { background-image: url("your-image-url"); }Sakin
Keymaster@Christine: Thanks and can you share that plugin name so that it will be beneficial for other users as well.
Sakin
Keymaster@roche5000: You can add the following css in “Appearance => Theme Options => Custom CSS” box:
.post-by .no-padding-left, .post-by li.last { display: none; } #main #content ul.post-by li { background: none; padding: 0; }Sakin
Keymaster@cindy: So, to make the background color of your breadcrumb wrapper to black, you need to add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
#breadcrumb-list .wrapper { background-color: #000; }For hover, you can change the color code in the following css as per your need and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:
#breadcrumb-list a:hover, #breadcrumb-list a:hover span { color: #404040; } -
AuthorPosts
