Vamsi
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Fashionistas theme: how to change image size?Edit your blog template like this.
Get only fullsize image link and have width of 100% to images on your main page.
something like.home article img {width:100%;}
Forum: Themes and Templates
In reply to: [Visual] update VisualHave a backup of the existing themes (Main Theme + child theme) and then you can experiment with the new theme.
Forum: Themes and Templates
In reply to: [Modality] Just capital letters in h1, h2, …add css property text-transform to your h tags.
something like thish1, h2 {
text-transform: lowercase;
}Forum: Themes and Templates
In reply to: Breadcrumbs Alignment in YoastTry putting your breadcrumbs code inside class “wrap”
<div class=”wrap”> <?php /*Breadcrumbs call */ ?></div>
Forum: Themes and Templates
In reply to: [Oxygen] I want first comment on every article the sameYou can hard code it .. !
Just after content, put your comment in the template, that will be shown for every post
Forum: Themes and Templates
In reply to: [Zerif Lite] Add Google custom search boxTo Remove the border try adding this style to your css
table .gsc-search-box { border-bottom: none; } .gsc-search-box .gsc-input { border-top: none; }
The search buttom image is either too small or not good. Please use input type text or insert image with
<img>
tagForum: Themes and Templates
In reply to: [Modality] Allowing comments on individual blog postsYou just linked to wordpress support site.
WordPress admin panel provides to enable or disable comments to each post.
Section(jk-primary-navigation) itself doesn’t have any styles. But its child elements. So, adjust padding-top of child-elements
i.e
Find the css styles for .main-navigation and .site-header-cart and adjust the padding .The original padding is 1.618em, you can change it to 1em or 0
and also links have some bottom padding
find this.main-navigation ul.menu > li > a, .main-navigation ul.nav-menu > li > a {
padding: 0 1em 2.244em; /* Change it to : 0 1em 1em */
}James code should actually work, if you have just added instead of editing the existing one, that might be overridden by original
Forum: Themes and Templates
In reply to: BoldR wrong conent displayAdd the below css for space around content
.post-content { padding:15px; }
For the margin under your gray bar.. change your margin-bottom from 40px to 0 like below
hr { border: solid #eee; border-width: 3px 0 0; clear: both; margin: 20px 0 0; /* margin:20px 0 40px; Orginal */ height: 0; }
Forum: Themes and Templates
In reply to: [Brasserie] HeaderI can only help if you allow me to look at your code. Otherwise it will be difficult for me just by looking at downloaded theme.
Go to admin panel -> Appearance-> Customize-> Header -> Choose your logo.
Forum: Themes and Templates
In reply to: [Brasserie] HeaderCheck the template , see what is coded. Probably featured image is displayed if available, if not there is a fall back(Your Header Image). So, you can just remove the code which is looking for featured image.
Forum: Plugins
In reply to: [Speed Booster Pack ? PageSpeed Optimization Suite] Broken in WP 4.3To Move General options tab permanently to bottom.
Edit Plugins->Speed-booster-pack->inc->template->options.php file
find and cut the whole div with id “tiguan1”
and place it after the div id “tiguan5”.Forum: Plugins
In reply to: [WP Share Simple] Other FeaturesShortcode is now available
[wp_share_simple color=”#999″]
Where color attribute is to change the color of share count.
Forum: Plugins
In reply to: [WP Share Simple] Other FeaturesThanks for your comment & Sorry my late reply.
Additional social services – yes. I will write small tutorial how to do that by this weekend probably.
ShortCode – I haven’t done anything for that. Shortcode and more features will be added soon.