Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@rbrt_bene: You can add the following CSS in “Appearance => theme Options => Custom CSS” box.. The following CSS will work for screen size above 960px. Below 960 is mobile devices. So, I advice not to change that. Change
@media screen and (min-width: 960px) { #primary { width: 70%; } #secondary { width: 25%; } }Sakin
Keymaster@Teedok: You can add the following CSS.
@media screen and (min-width: 960px) { p { margin-bottom: 20px; } }Sakin
Keymaster@rbrt_bene: Send me your site URL and then I will check in.
Sakin
Keymaster@martyn: After you build child theme, you need to create functions.php file in your child theme. Then copy the whole function
catcheverest_homepage_featured_content()from catcheverest-functions.php file to your child them functions.php file.Then add do_shortcode before
$options[ 'homepage_featured_content' ][ $i ]See more details about shortcode at http://codex.wordpress.org/Function_Reference/do_shortcodeSakin
Keymaster@martyn: You can work on with child theme and them add option to accept shortcode. We cannot do that for parent theme.
Sakin
Keymaster@ashrafashraf: Child theme will work in updated version as well. But in you are upgrading from Free to Pro version then you need to edit the Template in child theme.
Sakin
Keymaster@oly: Please don’t post repeat question.
http://catchthemes.com/support-forum/topic/increase-width-of-main-slider-title-box/Sakin
Keymaster@youngwings: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
#secondary #blog_subscription-7.widget { background-color: #f9fdc3; }Sakin
Keymaster@Bill Pagonas: Changing the image in the function will not work as the image you are importing is small size.
So, you might consider add the css to change the container width.
.post .post-thumb { width: 22%; } .post .post-article { margin-left: 4%; width: 74%; }Sakin
Keymaster@martyn: Sorry for security reason that homepage featured content will not accept the shortcode. Let me contact you though email so that I can check the plugin in your site.
Sakin
Keymaster@oly: Ok then use the following CSS.
@media screen and (min-width: 960px) { #main .entry-header .entry-title { font-size: 50px; } }Sakin
Keymaster@Sonia: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
.widget-area .widget img { border: none; }Sakin
Keymaster@Teedok: For pages you can take page id and for post you can take post ID. For example the page “Informace k závodu” Id is 2 so it will be as below:
.page-id-2 #main-slider { display: none; }Sakin
Keymaster@oly: Yes you can do that with media screen.
/* For screen less then 960px */ @media screen and (max-width: 960px) { #main-slider .entry-container { max-width: 100%; } }Sakin
Keymaster@oly: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
@media screen and (min-width: 960px) { .entry-header .entry-title { font-size: 50px; } }Sakin
Keymaster@Teedok: Then you can add the following CSS in “Appearance => Theme Options => Custom CSS” box to hide the slider in main page.
.home #main-slider { display: none; }Sakin
Keymaster@oly: Sorry I cam bit confused which page heading you are talking about. Can you explain it or share screenshot.
Sakin
Keymaster@martyn: Sorry I don’t know about that plugin much. they said that have shortcode. You can add that. Also for plugin, it’s better to ask plugin author as we don’t know about that plugin code.
-
AuthorPosts
