Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@oly: You can use the Custom Menu through “Appearance => Menu”. Then you will see the Pages box, which shows the most recent pages. Just click on View All tab and it will show Home. Just check the “Home: Home” and click on add to menu. Then it’s done.
Sakin
Keymaster@oly: You can add widget Catch Everest: Social widget to Header Right Sidebar. But this option is only available in Pro version. If you are using free Catch Everest theme then you need to upgrade to Catch Everest Pro theme.
See this for additional features added in Catch Everest Pro version http://catchthemes.com/theme-instructions/catch-everest-pro/
Sakin
Keymaster@jocatman: I can see the header image is responding to small size. Your header image is small so it is responding only after screensize below 700px. You can scroll down your browser and check it.
To reduce the space on the body text of pages and blogs, you have to change the css for all responsive screen. So, I don’t recommend it.
If you ad the following CSS in “Appearance => Theme Options => Custom CSS” box, it will reduce for all screen. So, be aware of this
`p { margin-bottom: 30px; }`If you want to change for different screen size then add individually to all these sizes.
`
@media screen and (min-width: 1190px) { p { margin-bottom: 40px; } }
@media screen and (max-width: 1060px) { p { margin-bottom: 20px;} }
@media screen and (max-width: 960px) { }
@media screen and (max-width: 767px) { }
@media screen and (max-width: 480px) { }
@media screen and (max-width: 320px) { }
`Sakin
Keymaster@Afsoon: Can you send me your site url and also send me screenshot of the problem. I need to see it to understand what are you trying to say. Then image should be working fine. But yes if you upload larger image in the slider it will crop to the exact size of Width: 1140px and Height: 450px.
If you are using custom header logo, just upload your logo and then don’t crop and publish it. Also when you upload more then one image. Don’t click on Random. It will show you random image.
See Theme Instruction for more details: http://catchthemes.com/theme-instructions/catch-everest
Sakin
Keymaster@steve519: Looks like you have issue with content editor css. Catch Everest don’t have content editor. You can try it by importing editor-style.css from twenty eleven to you child theme.
Sakin
Keymaster@fritzhesse: Again your site is password protected. I am giving you code on the assumption that you are using Catch Everest theme and haven’t change any code. You can change the color code and add the following CSS in “Appearance => Theme Options => Custom CSS” box.
`
/* For Footer Text Color */
#site-generator { color: #999; }
/* For Footer Link Color */
#site-generator a { color: #ddd; }
`Sakin
Keymaster@karinschultz: For menu, you can use Custom Menu through “Appearance => Menu” which give total flexibility in creating menu.
I don’t get it what do you mean by “I do want the page title to appear as the first line in the content” Can you show me the example of what you don’t want.
Sakin
Keymaster@fritzhesse: Don’t edit style.css as the changes in style.css will be overwritten when you update the theme. So, please add the css in “Appearance => Theme Options => Custom CSS” box.
Sakin
Keymaster@K8e: Thanks, now I can see your site.
1. One of my featured slider pics won’t stay the size I specified. The first picture is perfect. The second one isn’t. Please help?
— Your first image size is good but your send image size is small. Replace the the larger image and it will be fine.2. Can I add a slideshow of pictures in my gallery page? Otherwise if I can’t, how can I put several pictures on the page without it looking organized. Would like it in Rows if can’t add a slideshow.
— To add slideshow of picture in your gallery pages. You have to install plugin. Try searching for gallery and image plugins at http://wordpress.org/extend/plugins/3. How can I get the text codes near the footer to go away?
— Which text codes are you talking about?Sakin
Keymaster@fritzhesse: Add the following CSS in “Appearance => Theme Options => Custom CSS” box.
`
.sb-holder { background-color: #000; }
.sb-selector:link, .sb-selector:visited, .sb-selector:hover { color: #fff; }
`Sakin
Keymaster@Dave.82: Adjust the following margin and padding as per you need and add the following CSS in “Appearance => Theme Options => Custom CSS” box.
`
#main { padding-top: 50px; }
.entry-header { margin-bottom: 30px; }
.site-content article { margin-bottom: 50px; }
`Sakin
Keymaster@jobregonz: First you have to add Services post from your WordPress Dashboard. “Services => Add New” Then this will show you.
Also looks like you have haven’t setup your Permalink. Please set that through “Settings => Permalinks”. You can see this for more details http://codex.wordpress.org/Using_Permalinks
Sakin
Keymaster@Chris: Just add the following CSS in “Appearance => Theme Options => Custom CSS” box.
`
.logo-wrap { position: relative; }
.sidebar-top { position: absolute; right: 10px; top: 10px; width: 32.5%; }
.sidebar-top .widget { background-color: transparent; }
`Sakin
Keymaster@karinschultz: I just check in “Breadcrumb Nav XT” plugin in Simple Catch Theme and it is working fine for Category but I don’t know what you did for settings in “Breadcrumb NavXT Settings”.
The changes I asked you is but complicate for slider. You need to know the coding of Php and WordPress functions. So, you need to get developer to edit that.
Sakin
Keymaster@danskvand: Yes after you update. Please change any value in Theme Options panel and click on save. Anything so that it clear the cache in Function set from Theme Options panel. Then refresh your browser and it will be fine.
Sakin
Keymaster@fritzhesse: Your site is password protect. So, I cannot view it. Please check it lacostafilmfestival.org
Sakin
Keymaster@obiokere: You can add the padding to in header right sidebar as per your need to adjust it. Just add the following CSS in “Appearance => Theme Options => Custom CSS” box
`
/* Padding for Sidebar top */
.sidebar-top { padding-top: 100px; }
/* For mobile device to remove the padding you have added for Sidebar top */
@media screen and (max-width: 767px) { .sidebar-top { padding-top: 0; } }
`Sakin
Keymaster@impresnet: By default maximum size is 1040px width but it can support 1140px width. To support 1140px width, you need to remove the white space in left and right by adding following CSS in “Appearance => Theme Options => Custom CSS” box
`#hgroup-wrap { padding-left: 0; padding-right: 0; }`Sakin
Keymaster@eric.suth: Thanks and here goes the answer to you.
1. How do I change the font, size and color of the Tittle and Tagline?
— Change the size and color code as per your wish and add the following CSS code in “Appearance => Theme Options => Custom CSS” box
`
/* For Site Title */
h1#site-title a { font-size: 45px; color: #444; }
/* For Tagline */
h2#site-description { font-size: 14px; color: #666; }
`2. How do I add an image as the header background?
— I have take your image in sidebar to show you the demo. Change the image as per you need and add the following CSS code in “Appearance => Theme Options => Custom CSS” box
`#header { background-image: url(‘http://unitiger.net/wp-content/uploads/2013/04/th.jpg’); }`3. How do I remove the “Leave a Reply” section out of the Home page and Contact page?
— Click to Read Tutorial and if you are still confused then watch this video, Click to View Video -
AuthorPosts
