Forum Replies Created
-
AuthorPosts
-
Pratik
MemberHi @hollyen,
You can have anything you want there but you need to do a bit of customization for that. First, create a child theme. Details for creating a child theme is here.
Then in the child theme’s functions.php, add function posted here: http://pastebin.com/WNFepRRW
Then in there you can edit line 28 to 34 to add any effect you want using html, css and even php.
If you are not familiar with customization, please hire a customizer.
Regards,
PratikPratik
MemberAlso please post in this support link: https://catchthemes.com/support-forum/topic/add-a-background-image/
Pratik
MemberHi @Randal,
Great you solved it. Let me know if there are any other issues.
Regards,
PratikPratik
MemberHi @pedrokraft,
To edit footer content, you will need to upgrade to pro version. Check out the theme here and its details here.
To disable search completely, you will need to upgrade to pro version too. But, you can hide the search using Custom CSS. It will be there but will be hidden. To achieve it, you can add following CSS code in Appearance=> Customize=> Theme Options => Custom CSS box:
#search-toggle { display: none; }If this does not work, please post in your site url.
Regards,
PratikPratik
MemberMarch 22, 2016 at 8:37 pm in reply to: Different Excerpt Settings for Category Archives and Main Blog Posts #87968Pratik
MemberHi @Michael,
What you have mentioned is possible but it will be a bit difficult. It involves using a child theme and making a bit of customization. If you are comfortable with it let me know and I will give you instructions on how to do so.
Regards,
PratikPratik
MemberHi @krizgriz,
This is a strange issue. The Featured Images should not have disappeared.
Can you let me know from where you changed the settings to show featured image as header image? Because I do not think this option existed in Catch Evolution Free version. It is only available in Catch Evolution Pro version. Have you by any chance downgraded from pro to free version?
Regards,
PratikPratik
MemberPratik
MemberHi @Eva,
I will need the page link where you want table border to be removed. Can you provide that?
Regards,
PratikPratik
MemberHi @taylor,
Clean Journal is a full-width theme. Even though the it is possible to limit the width, there will be a need of checking the design on all devices for responsive site to work.
I need to check your site but it asks for password. Can you provide that?
Regards,
PratikPratik
MemberHi @xherbie,
That type of functionality will require some custom work. It will require you to filter the menu via Custom Nav Walkers. I am sorry but this falls outside our support scope. Please consider hiring a customizer.
Regards,
PRatikPratik
MemberHi @Randal,
The settings from free theme should migrate to pro theme as in Catch Kathmandu Pro as they use same option.
The menus will not migrate though as they are handled via core. This will be taken care of in next version update as well.
Can you post in your site URL so I can check it?
Regards,
PratikPratik
MemberHi Hollye,
Do you mean in http://mydreamlife.me/dream-video-devil-room/ where your name is beside a user icon?
This is not possible as that is just a link. Avatars will show up on comments.If it is somewhere else, please let me know.
Regards,
PratikPratik
MemberHi @Shop43,
1. Oh, you meant separately for each post, well I thought separately for main and primary sidebar :D. For that use following Code:
#primary article { border-top: 2px solid #000000; /* Remove this line if you do not want border top */ border-right: 2px solid #000000; /* Remove this line if you do not want border right */ border-bottom: 2px solid #000000; /* Remove this line if you do not want border bottom */ border-left: 2px solid #000000; /* Remove this line if you do not want border left */ border-radius: 5px; }Just remove the lines that you do not want and that side’s border will be removed.
For Sidebar, The Search and Social media icon have bottom border. Do you want to just add just the left and right borders to them, or completely enclose them with a different border removing the previous border. Can you explain this a bit, I am confused.
6. For that use following CSS Code:
#sidebar-header-top .widget.widget_widget_catchbox_adwidget { margin: 5px; }Just increase or decrease the size of 5px and the margin will increase/decrease.
Regards,
PratikPratik
MemberHi @riccrom123,
The effect will be the same in the boxed layout too. And if you want boxed layout, then you will need to of a lot of customization as it will need to be fixed in all responsive device CSS.
If you change the html structure a bit, then it may be achievable, but for that, you need to hire a customizer as it will involve a bit of customization.
Regards,
PratikPratik
MemberHi @Jennifer,
I did some research for you and that icon can be achieved using HTML entities. So use following code instead.
.widget ul { list-style: none; } .widget li { text-indent: -15px; } .widget li:before { content: "\271D"; padding-right: 5px; }This should work and overcome the obstacle on Wingdings not being web ready as it uses HTML entity instead of the symbol.
Let me know how it goes.
Regards,
PratikPratik
MemberHi @jonny,
You are welcome. If you like Catch Responsive theme and Catch Web Tools Plugin along with our support, then please give us your valuable review at https://wordpress.org/support/view/theme-reviews/catch-responsive and https://wordpress.org/support/view/plugin-reviews/catch-web-tools.
Have a nice day.
Regards,
PratikPratik
MemberHi @Jennifer,
You can use following CSS code in <b>Appearance-> Customize-> Theme Options -> Custom CSS</b> box:
ul li { list-style-type: "✝"; }Note: Specifying Wingdings 2 font is contrary to the published specifications, has never been a documented feature of HTML, is not reliable, and should not be done. Wingdings 2 is not available on all computers, and so the intended characters may not appear on computers running non-Microsoft operating systems such as Mac OS 9, Mac OS X 10 or Linux. The intended characters are also unlikely to appear when using a standards-compliant browser such as Firefox, Google Chrome, Netscape 6+, Opera 6+, Safari 3+ or SeaMonkey (formerly Mozilla). The same problems are found with the Webdings, Wingdings and Wingdings 3 fonts – they should not be used in Web pages.
Regards,
PratikPratik
MemberHi @Shop43,
2. To put borders around primary and secondary separately, use following code in Appearance=> Customize => Theme Options=> Custom CSS Styles box:
/* For Main block */ #primary { border: 2px solid #000000; border-top: none; /* Remove this if you want it in the top as well */ border-radius: 5px; } /* For Sidebar */ #secondary { border: 2px solid #000000; border-top: none; /* Remove this if you want it in the top as well */ border-radius: 5px; }3. For this, use following code in Appearance=> Customize => Theme Options=> Custom CSS Styles box:
.widget img { display: block; margin: 0 auto; }5. For social icons, I have provided you CSS Code: http://pastebin.com/cr16a4AT. Just add it in Appearance=> Customize => Theme Options=> Custom CSS Styles box and it will have the effect you desire.
NOTE: You have made a mistake in your Custom CSS code. You are missing a
}at the end. The Codes I provided will not work unless you fix it.Pratik
MemberHi @Eddie,
You can try the Jetpack Plugin‘s Widget visibility module. It will let you choose the option to make widget visible with conditions.
Regards,
Pratik -
AuthorPosts
