Forum Replies Created
-
AuthorPosts
-
March 21, 2015 at 5:41 pm in reply to: Help! How to change promotion headline's text color, and other issues- Fullframe #53895
Sakin
Keymaster@Laura Pio:
1. For Promotion headline and subheadline text color, you can change the color code in the following css and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:/* Promotion Headline Color */ #promotion-message h2 { color: #404040; } /* Promotion Sub-Headline Color */ #promotion-message p { color: #404040; }2. You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
.archive-post-wrap { border: none; }3. You need to be more clear about this. Since, I don’t have your site URL proving support is not that easy as I need to make it log of assumption.
For border, you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
#featured-content img { border: 1px solid #000; }But for size, it take default size Width: 400px and Height: 225px added in your page as featured image. If you upload image larger then this then it will crop exactly to this to match responsive design. But if you upload featured image in your page less then this then it will load your original image. But if you want flexible image and all then you might need to upgrade to pro version where you have option to use “Featured Image Content”, where you just uplaod the image as per your need. See the theme instructions for more details at http://catchthemes.com/theme-instructions/full-frame/
4. To check the gallery, your site needs to live. There are various way users adds in Gallery. Our theme uses like this http://catchthemes.com/demo/full-frame/gallery/
Sakin
Keymaster@fletchsc:
1. I see that you have remove the Site Title. You shouldn’t remove the site title for Search Engine Optimization. But yes, if you don’t like to show in your site header then you can just hide it. For that, go to “Appearance => Customize => Site Title & Tagline”, type in Site Title and tagline which describe your site. Then to hide it just uncheck “Display Header Text” and save changes.
2. To hide the search box/ Header Right Sidebar, you can just go to “Appearance => Customize => Theme Options => Custom CSS Options” box and add the following css:
.sidebar-header-right { display: none; }Sakin
Keymaster@Ita: Can you post in your site URL and let me know what size you want to make it. Then I can check in.
Sakin
Keymaster@l: Yes, for that you need to copy function
simplecatch_headersocialnetworks()in you child theme and then change the following code://MySpace if ( !empty( $options[ 'social_myspace' ] ) ) { $simplecatch_headersocialnetworks .= '<li class="myspace"><a href="'.esc_url( $options[ 'social_myspace' ] ).'" title="'.sprintf( esc_attr__( '%s on MySpace', 'simplecatch' ),get_bloginfo('name') ).'" target="_blank">'.get_bloginfo( 'name' ).' MySpace </a></li>'; }Note: after changing this you need to change any value in Theme Options panel to clear the transient cache otherwise you will see changes only after 24hours.
Replace it with the following:
//MySpace if ( !empty( $options[ 'social_myspace' ] ) ) { $simplecatch_headersocialnetworks .= '<li class="myspace"><a href="'.esc_url( $options[ 'social_myspace' ] ).'" title="'.sprintf( esc_attr__( '%s eLetter', 'simplecatch' ),get_bloginfo('name') ).'" target="_blank">'.get_bloginfo( 'name' ).' eLetter </a></li>'; }Sakin
Keymaster@michellebergmann: You site is not visible, look like it requires login to view it. Also the link that you send me is for Gallery Archive page, not the gallery page. If it’s default WordPress gallery then it will just how one image and in the below it will say like “This gallery contains 23 photos.”.
We also found one issue when viewing default WordPress Gallery single post. We have just uploaded new version 2.2.1 in WordPress.org and it will be live soon after the WordPress.org theme review team approves it.
Sakin
Keymaster@Vanessa: I checked in from my IE11 and IE 10 and it’s working fine. Check your IE browser. You can also test it from http://netrenderer.com/
Sakin
Keymaster@kyle: Remove that background image and background color from your customizer and then add the following css in “Appearance => Theme Options => Custom CSS” box:
body { background: #BA3027; /* Show a solid red color for older browsers */ background: -moz-linear-gradient(#BA3027, #000000); background: -o-linear-gradient(#BA3027, #000000); background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#BA3027), to(#000000)); /* older webkit syntax */ background: -webkit-linear-gradient(#BA3027, #000000); }Yes, but this custom background in customizer is from WordPress core so it’s not good practice to modify core. If the WordPress core adds it then it will be there.
Sakin
Keymaster@Kenny: This is responsive design site so you need to careful while adjusting the width of Primary(Your right content) and Secondary (your left Sidebar ). Below you will find the css that uses for various screen size. So, if you want to increase the content then increase Primary width and reduce the same amount in secondary width. After you adjust it you can add in the css in “Appearance => Theme Options => Custom CSS” box:
/* Screen size above 961px */ @media screen and (min-width: 961px) { #secondary { width: 340px; } #primary { width: 480px; } } /* Screen size above 1024px */ @media screen and (min-width: 1025px) { #secondary { width: 340px; } #primary { width: 540px; } } /* Screen size above 1152px */ @media screen and (min-width: 1153px) { #secondary { width: 360px; } #primary { width: 620px; } } /* Screen size above 1280px */ @media screen and (min-width: 1281px) { #secondary { width: 380px; } #primary { width: 700px; } } /* Screen size above 1344px */ @media screen and (min-width: 1345px) { #secondary { width: 380px; } #primary { width: 750px; } }Sakin
Keymaster@s.reinold: Thanks for your appreciation. If you like Catch Responsive theme than you can help us by providing your review and rating here at https://wordpress.org/support/view/theme-reviews/catch-responsive?rate=5#postform .
Sakin
Keymaster@Kenny: Sorry I couldn’t see it. Maybe you can upload your screenshot of your site in any photosharing site and paste the URL here. So, that I don’t need to look at your site URL. So, let me know by how much you want to deduce it to.
Sakin
Keymaster@s.reinold: Sorry replace the previous css I gave you with the following css:
@media screen and (max-width: 990px) { .mobile-menu-text { display: block; } }Sakin
Keymaster@ertlaw: Which version of WordPress are you using it. Are you using latest version 4.1 and also send me your site URL.
Sakin
Keymaster@jbadura: You can add the following css in “Appearance => Theme Options => Custom CSS” box:
.entry-meta { display: none; }Sakin
Keymaster@herographics: I see that you are using Catch Base Free version where there in only Featured Page Content or Demo Featured Content. So, just go to “Appearance => Theme Options => Featured Content Options”, choose “Featured Page Content” in “Select Content Type”. Then you need to select the pages one by one/
Sakin
Keymaster@s.reinold: Yes, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
@media screen and (max-width: 990px) { .mobile-menu-anchor { display: block; } }Sakin
Keymaster@kyle: It cannot be exactly like image but yes we can make it similar. Can you send me your site URL and the image which you can to make it similar to.
Sakin
Keymaster@s.reinold: I see that you have added the following css where you have missed dot in front
mobile-menu-anchor a.genericon-menu,.mobile-menu-anchor a.genericon-menu:hover {color: #FFFFFF;}It should be as:
.mobile-menu-anchor a.genericon-menu, .mobile-menu-anchor a.genericon-menu:hover { color: #fff; }Sakin
Keymaster@s.reinold: Post in your site URL so that I can check in.
-
AuthorPosts
