Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@aquahoya: Please post your query in New Support Forum. This page concerned about the site http://truthinablog.organika.ca/. Also when you post your question please add in your site URL.
Simple Catch Free site have only Featured Post slider, where you have to add in the Post Id which will take the Post title, excerpt and featured image of that post. In you have Simple Catch Pro Theme you have additional Featured Image Slider where you can upload independent image, title, content and links.
For Header background, you need to upload your header image through media uploaded in Add New media in your WordPress Dashboard. Then you can add in the following CSS in “Custom CSS” box in your Theme Options panel.
#header {
background: url("Your Background Image URL") repeat scroll 0 0 transparent;
}
You can add widgets in in your sidebar. Go to Appearance => Widgets. Then drag and drop widgets in the sidebar.
You can remove the comment through “Settings => Discussion”. But individual page and post setting will overwrite the overall setting. See this for more details http://en.support.wordpress.com/enable-disable-comments/
Sakin
Keymaster@belgianbingo: You are actually using table that is why there is line, if you want to remove the table border in the homage then you can add the following css.
/* To Remove table border bottom in homepage */
.home #content table { border: none; }
/* To Remove table border top in homepage */
.home #content td { border: none; }
Sakin
Keymaster@belgianbingo: First to tell you that all your content in homepages at posts not pages and category. In This theme you don’t have option to add category. I see at page http://www.uitgesproken.be/vbs/?page_id=469, you have coded to add category on it.
The only option that is now with you is to add page as the homepeage through settings. Then in that page you add all the details.
Sakin
Keymaster@truthinablog: If you want padding just on title of the post then add the following css
.home #content .post h2.entry-title { padding-top: 25px; }But if you want to add the padding to the whole div including the title and images then add the following css:
.home #main #content .post { padding-top: 25px; }Sakin
Keymaster@frederikwa: This theme is design responsive so that the uses gets easy to read your content on the mobile devices. That why you will see the content in your mobile devices and then sidebar will move down your content.
But if you are talking about your table cut off which has match results. Then that table is not responsible. You need to add responsive table details.
That table if iframe table and which has got data in the div “fsbody” which is inside the iFrame and we cannot remove the width of the element inside the iFrame. If you can make that
#fsbody { max-width: 100%; }then it will work.Sakin
Keymaster@JOSH15BW: For Catch Box Pro theme, you can login to your account and download the theme. There is complete CSS. If you have messed up the css then the best option is to deleted the current messed up theme and upload the one you downloaded from your account with Catch themes.
Sakin
Keymaster@thess: Add the following css:
#header .logo-wrap, #site-details { padding: 0; text-align: center; width: 100%; }Sakin
Keymaster@AiD: For font color in Search Button
.widget_search .searchform button { color: #ccc; }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.
-
AuthorPosts
