Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@frederikwa: When I check in your site with my mobile and tablet. It is working fine as per our design. I think you are confused about the term responsive. That is why I am asking what is wrong you think send me the screenshot so that I can explain it.
Sakin
Keymaster@frederikwa: I am not clear about what you are talking about. Can you send me the screenshot.
Sakin
Keymaster@frederikwa: I think I already answered you. You still have problem.
Sakin
Keymaster@frederikwa: There is no space to make it bigger then that.
Sakin
Keymaster@Poornima::You can increase the padding right:
.entry-content td { padding-right: 5%; }
Be careful with your padding it will damage your responsive layout. I have seen like you have added padding to #main { padding-left: 90px; }. This will create problem in small screens. If you don’t want to work your site as responsive then disable it.
Sakin
Keymaster@Poornima: Add the following css for font in menu
#access ul li a { font-family: Verdana, Geneva, sans-serif; }
But I don’t understand your table question. See this page for our default table. http://catchthemes.com/demo/simplecatch-pro/html-elements/
Sakin
Keymaster@Robertf: In custom menu also you can add home. Go to Appearance => Menu. Then in Pages, Click on View All. There you will see Home: Home. Just check that page and click on Add to menu.
Sakin
Keymaster@Elisabetta: Yes you can hide it from the custom css. For example if you want to remove the title, date, author, category and comments of posts like this http://www.federicoalberati.com/wordpress/?p=1084 .then you can add the following css in your “Custom CSS” box in Theme Options panel
.single .entry-header { display: none; }
Sakin
Keymaster@kirk: For the Featured Post Slider background color. You can add the following CSS in your Custom CSS box in Theme Options panel.
#slider { background-color: #fff; }
Sakin
Keymaster@kirk: Add the following CSS in your “Custom CSS” box in Theme Options Panel.
#branding ul.menu, #colophon #access-footer ul.menu { text-align: center; }
#branding ul.menu li { display: inline-block; float: none; }
Sakin
Keymaster@Elisabetta: Header and Footer codes are for the Scripts like Google analytics, Facebook tracking code, Add this code and other scripts that needs to load in the header or footer behind the site which is not visible to the user but needed for this type of services.
Currently there is no option to add the text in the header. Except for the Site title and description from Settings => general and then Social Icons and Search box.
If you want to add further then you need to build child theme and then customize the header.php and add it.
Sakin
Keymaster@thess: Just add the padding top in your site tagline with the help of css below. Increase the number as per you need.
h2#site-description { padding-top: 50px; }
Sakin
Keymaster@beahowel117: First fine the color code that you want to add in http://www.w3schools.com/cssref/css_colors.asp . Then add the color as per you need. I just check in your site and you have added black color code #000 in the link color. Change that.
#main a { color: #000; }
Sakin
Keymaster@dommyt: You forgot to add in the featured image in your posts. Just add the featured image and then it will be fine. See this on how to add featured image http://en.support.wordpress.com/featured-images/#setting-a-featured-image
Sakin
Keymaster@rdbento: Just add the following CSS in the “Custom CSS” box in your theme options panel to remove the border in the images.
.post .post-thumb a, img[class*="align"], img[class*="wp-image-"] { border: none; }
Sakin
Keymaster@Rufi139: That’s great. It’s the best thing about WordPress. Lots of plugin to be used. Share your experience. Thanks.
Sakin
Keymaster@AiD: Simply add the following function in function.php in your child theme. If you add in in your theme then always keep backup when you do the update to your theme to new version.
function simplecatch_google_fonts() {
wp_enqueue_style('google-fonts', 'http://fonts.googleapis.com/css?family=Lora|Oswald');
}
add_action('wp_enqueue_scripts', 'simplecatch_google_fonts');
Sakin
Keymaster@AiD: Sorry for not being clear. For Search Button background color
.widget_search .searchform button { background-color: #ccc; }
You can increase the padding to increase the height of the footer by adding the following CSS in “Custom CSS” box in your Theme Options panel
#colophon { padding: 40px 0; }
Sakin
Keymaster@truthinablog: Yes you can add the following css for each post in Homepage only.
.home #main #content .post {
background-image: url("http://truthinablog.organika.ca/wp-content/uploads/2013/02/BeFunky_Julie-in-Blue.jpg-210x210.jpg");
}
-
AuthorPosts