Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@Rich2337: Please create new support question for this and also add in your site URL while asking customization question.
Sakin
KeymasterHere goes the CSS John:
#main #content img {
border: none;
}
Sakin
Keymaster@Abbtt: Just create a custom menu and add the home link. See this for more details on Custom Menus: http://en.support.wordpress.com/menus/
Sakin
Keymaster@eag1111: Currently it uses the font “Arial,sans-serif” and “Lobster” for site title.
To change the general font. You need to change it in the following css:
/* For All content */
body {
font-family: Arial,sans-serif; /* Type of Font */
font-size: 12px; /* Size of Font */
line-height: 24px; /* Line Height of Font */
}
/* For Site Title content */
h1#site-title {
font-family: 'Lobster, Arial,sans-serif';
font-size: 45px;
}
See this for tutorial on Font CSS: http://www.w3schools.com/css/css_font.asp and Websafe fonts: http://www.w3schools.com/cssref/css_websafe_fonts.asp
Sakin
Keymaster@Abbtt: For title in the Nagivation bar. There is cool feature of WordPress that is Custom Menus, where you can add in the item you want and also change the title. See this for more details http://en.support.wordpress.com/menus/
Sakin
KeymasterGreat you got it sorted thanks for posting it.
Sakin
KeymasterHello John,
I just check in your post for example this: http://socialmediasuperfriends.com/facebook-marketing-what-does-it-really-take-to-be-succesful-2/ Here the image is wrap in caption. So to remove border for this add the following css
.wp-caption {
border: none;
}Sakin
KeymasterHello John,
You can add the following CSS in “Custom CSS” box in your Theme Options under Appearance Tab in your WordPress Dashboard./* To reposition the social networks icons */
#header .social-search {
margin-top: 40px; /* Change this top margin as you like it*/
}/* To remove the space above the logo graphic */
#header .logo-wrap {
margin-top: 54px; /* Change this top margin */
}/* To remove the space below the logo graphic */
#header #mainmenu {
margin-top: 40px; /* Change this top margin */
}Sakin
Keymaster@vonromantiko: you are great. You have already added Superfish js.
Sakin
Keymaster@andrewteg: There must to something issue with the editor-style.css we will check that and add for fixes in version updates. So, you might considering copying the style from style.css to editor-style.cssif it is urgent.
Sakin
Keymaster@mike: I don’t get your question. Webmaster tool are for Website Verification and Header and Footer codes. But the Social Links are for the social icons. There two are different. Can you tell me what you need to do. Also while posting support question please don’t forget to add in your Site URL. So, that I can check it.
Sakin
Keymaster@openMind: All our translation if done voluntary by all users like you. So, I need to ask them on the fixed and will update.
Sakin
Keymaster@kangooloss3: You need to send me your site URL to send your the CSS that you can add in your Theme Options under Appearance Tab in your WordPress Dashboard.
But you can try the following css:
/* For padding below */
.hentry { padding-bottom: 0; }
/* For padding top */
.entry-header hgroup .entry-title { padding-top: 0; }
Sakin
Keymaster@kangooloss3: Let me know what you get feedback from plugin and if I need to fix anything then I will work on that.
Sakin
Keymaster@hendrik: Yes we will add the additional features in updates. The main addition to the Simple Catch theme is the Responsive Design and Featured Image Slider.
Solutions for your questions. You can add the css in your child theme style.css or in your theme theme options.
1. how do I change the color of the menu. Just change the color code in the below css.
/* For menu main background */
#access {
border:1px solid #ccc;
background-color:#fff;
}
/* For hover and current menu background */
#access ul li a:hover, #access ul li.current-menu-item a, #access ul li:hover > a {
background-color:#444;
}
/* For submenus menu background */
#access ul li ul li a:hover, #access ul li ul li:hover > a {
background-color:#333;
}
2. how do I change the color or background of the header
To change the background just change the image.
#branding {
background:url("images/bg-header.jpg") left bottom repeat-x;
}
To change the color and remove the background image. Just change the color code below:
#branding {
background: none left #000;
}
3. how can I increase the space between logo and site title. If you check my site http://69.89.31.69/~riceandc/ you see that it looks a bit strange. Just increase the padding left as below:
#site-title {
padding-left: 30px;
}
Sakin
KeymasterHi Henry,
Don’t worry about this. Can you add the same version in your child theme and then you will stop receiving the update notice.
Regards,
SakinSakin
Keymaster@Anusha: You are using Featured Post Slider so it will linked with the post. But if you want to liked with the external link then you may try redirection plugin. Which will help you to redirect your post to external site.
Sakin
Keymaster@Abbtt: The width of the content in 642px and the sidebar is 306px. Yes, if you know css then you can edit the width by adding css in “Custom CSS” box in Theme Options.
-
AuthorPosts
