fgirach09
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How to change line colors (between articles)hi;
change the background-color in #masthead-wrap in your style.css file. for your background color.change the color of .main-navigation a in same.
thanks;
FarhanForum: Themes and Templates
In reply to: [Virtue] Category grid problemhi;
.tcol-md-3 {
margin-left: 7px;
margin-top: 2px;
padding: 9px;
width: 16%;
}
Place above code to your custom css file…i hope you want to display like this…Thanks;
FarhanForum: Themes and Templates
In reply to: [Enigma] Move menu to middlehi;
in your style.css, find…
#menu-bar and change width:59%;margin:0 auto; padding:0;
your menu bar will go to center.and in #menu-bar a change the margin of your link
thanks;
FarhanForum: Installing WordPress
In reply to: Theme won't load properly in Chromehi,
i go through your link. your logo style given as float:left, as per my knowledge you have to remove it. i cross verify in both chrome and Firefox…Thanks;
FarhanForum: Themes and Templates
In reply to: [BirdSITE] Change fonthi, in your custom css change font style of the body it will change.
thanks;
FarhanForum: Themes and Templates
In reply to: [Tempera] how to remove white space where page titles used to behi,
you can give display:none for the appropriate div to that you don’t want to display. it will remove area of the div.thanks,
Farhan GirachForum: Themes and Templates
In reply to: Frontpage is a mess in Mozilla and IEhi,
i think you have to recheck again.in my machine it is displaying same as chrome with max-width: 90%; .thanks,
FarhanForum: Themes and Templates
In reply to: [Dynamic News Lite] change font size within bbpresshi,
place your font size in #bbpress-forums li in bbpress.css.
thanks.
FarhanForum: Themes and Templates
In reply to: [Dynamic News Lite] change font size within bbpresshi,
you meant to ask about your widget title font want to bigger ?thanks,
FarhanForum: Themes and Templates
In reply to: [Dynamic News Lite] change font size within bbpresshi,
Reduce your font size of body tag in style.css file.thanks
Forum: Themes and Templates
In reply to: Frontpage is a mess in Mozilla and IEhi,
Insead of using px in your .site-container instyle.css try to use %.
i tried it with max-width: 90%; it start to display fine..
Thanks,
Farhan GirachForum: Themes and Templates
In reply to: [Sugar and Spice] Widget Questionyoes you can create your own widget area according to your requirement…
Add to function.php file :-
<?php
/**
* Register Widget Area.
*
*/
function wpgyan_widgets_init() {register_sidebar( array(
‘name’ => ‘Header Sidebar’,
‘id’ => ‘header_sidebar’,
‘before_widget’ => ‘<div>’,
‘after_widget’ => ‘</div>’,
‘before_title’ => ‘<h2 class=”rounded”>’,
‘after_title’ => ‘</h2>’,
) );
}
add_action( ‘widgets_init’, ‘wpgyan_widgets_init’ );
?>Add to location where you want to place widget :-
<?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar(‘header_sidebar’) ) :endif; ?>
Thanks,
Farhan GirachForum: Themes and Templates
In reply to: Blank space twenty fourteenhi,
remove padding of your .content-area area in style.css
it will work fine
thanks.
Farhan GirachForum: Themes and Templates
In reply to: [Sugar and Spice] Widget Questionhi,
yes you can add it. so far i know you have to have create widget area for that.Thanks,
Farhan GirachForum: Themes and Templates
In reply to: [Fictive] Fictive scrollingmay you post link of your web
thanks.
Farhan Girach