Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@mahroch: I also use Mozilla most of the time in my mac and it’s working fine. Maybe you can some addons that is blocking jquery tabs. Check that.
Sakin
KeymasterHello Jesse,
I just check in your site and it is displaying menu in mobile devices. Then only problem I see is the color options that you have selected from “Appearance => Theme Options => Color Options => Menu Color Options”. Change “Sub-Menu Text Color” as your menu background and text is all blue and cannot view it.
Regards,
SakinSakin
Keymaster@Klaas: Catch Everest default theme is sans-serif and when using inherit, it will load the default font.
Changing font is nice and cool in Pro version as you will get option to use all Web Safe Fonts and popular Google fonts from “Appearance => Theme Options => Font Family Options”
The Arial font is web safe font. So, to change the title fonts you can add in the following css in “Appearance => Theme Options => Custom CSS” box.
.entry-header .entry-title { font-family: Arial, sans-serif; }For the sidebar widget link color, you can add the following css in “Appearance => Theme Options => Custom CSS” box.
.widget-area .widget a { color: #404040; }Sakin
Keymaster@RadMod: If you upload the image size small then width 1280px then it will display the background color of slider. You can add the following css in “Appearance => Theme Options => Custom CSS” box to make the background color transparent.
#main-slider { background-color: transparent; }Sakin
Keymaster@boosted179: Try adding in the following css in “Appearance => Theme Options => Custom CSS” box.
.featured-image img, .entry-content img { box-shadow: none; }Sakin
Keymaster@oly : You can add in the following css in “Appearance => Theme Options => Custom CSS” box, which will change the hover color to #222 which is same as no-hover.
.entry-header .entry-title a:hover { color: #222; }Sakin
Keymaster@Kathleen: Yes there is per-defined popular Google fonts in Pro version which you can change from “Appearance => Theme Options => Font Family Options”. Also you can add google font by adding in font plugins.
Sakin
Keymaster@svoelker: Can you try adding in the following css in “Appearance => Theme Options => Custom CSS” box.
.wp-video { margin: 0 auto; }Sakin
KeymasterYou will not be able to add that directly in your widget. So, you need to add that from your css. You can add in the following css in “Appearance => Theme Options => Custom CSS” box.
.widget-title { color: #bd2026; font-family: Monotype Corsiva, sans-serif; }November 4, 2014 at 1:47 pm in reply to: Need to create child theme in order to update theme? #46915Sakin
KeymasterFor child theme tutorial, check out http://catchthemes.com/blog/create-child-theme-wordpress/. You can also download the sample child themes from there.
November 4, 2014 at 1:46 pm in reply to: Navigation: Name of article instead of previous and next #46914Sakin
Keymaster@Tillman: By default theme doesn’t support next and previous post name for navigation. IF you want this then you might need to hire cusotmizer and then ask him/her to build child theme http://catchthemes.com/blog/create-child-theme-wordpress/ and then change
previous_post_link()andnext_post_link()functions.Sakin
Keymaster@Irina: It depends on the social icons that you use. All the css is shown below. You can add in whatever you need in “Appearance => Theme Options => Custom CSS” box.
.social-profile ul li.facebook a { background-position: 0 -44px; } .social-profile ul li.twitter a { background-position: -44px -44px; } .social-profile ul li.rss a { background-position: -88px -44px; } .social-profile ul li.you-tube a { background-position: -132px -44px; } .social-profile ul li.linkedin a { background-position: -176px -44px; } .social-profile ul li.tumblr a { background-position: -220px -44px; } .social-profile ul li.viemo a { background-position: -264px -44px; } .social-profile ul li.slideshare a { background-position: -264px -44px; } .social-profile ul li.dribbble a { background-position: -308px -44px; } .social-profile ul li.my-space a { background-position: -352px -44px; } .social-profile ul li.aim a { background-position: -396px -44px; } .social-profile ul li.myspace a { background-position: -352px -44px; } .social-profile ul li.flickr a { background-position: -440px -44px; } .social-profile ul li.pinterest a { background-position: -484px -44px; } .social-profile ul li.google-plus a { background-position: -528px -44px; } .social-profile ul li.wordpress a { background-position: -572px -44px; } .social-profile ul li.deviantart a { background-position: -616px -44px; } .social-profile ul li.slideshare a { background-position: -660px -44px; } .social-profile ul li.instagram a { background-position: -704px -44px; } .social-profile ul li.skype a { background-position: -748px -44px; } .social-profile ul li.soundcloud a { background-position: -792px -44px; } .social-profile ul li.email a { background-position: -837px -44px; } .social-profile ul li.contactus a { background-position: -837px -44px; } .social-profile ul li.xing a { background-position: -882px -44px; } .social-profile ul li.meetup a { background-position: -971px -44px; }Sakin
Keymaster@fmck718: For sub-menu as per your css, the top position should be 30px. So, add the following css in “Appearance => Theme Options => Custom CSS” box.
#header-menu ul.menu ul { top: 30px; }November 3, 2014 at 11:09 pm in reply to: Can I have footer widget areas only on front page and not on other pages #46873Sakin
Keymaster@Tillman: It happens. Thanks for your appreciations 🙂
Sakin
Keymaster@Naomi: You can edit the padding bottom in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box
#hgroup-wrap { padding-bottom: 50px; }November 2, 2014 at 7:46 pm in reply to: Can I have footer widget areas only on front page and not on other pages #46820Sakin
Keymaster@Jale: Site speed mostly depends on your Website Hosting Server. But if you want then you can install plugin such as W3 Total Cache to cache your site to make it faster load.
To hide title only in page, you need to add the following css in “Appearance => Theme Options => Custom CSS” box.
.page #main .entry-header { display: none; } -
AuthorPosts
