Vishnupriya Natarajan
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Enigma Parallax] remove blog sidebarhai natasha,
For you have to give the id or high priority class name for css code.
thanks
Forum: Themes and Templates
In reply to: [Hueman] Change the search box text (widget) – HuemanHere′s a filter that you can drop instead into your functions.php file:
function wpse50321_alter_search_form( $form )
{
return ‘<form role=”search” method=”get” id=”searchform” action=”‘ . esc_url( home_url( ‘/’ ) ) . ‘” >
<input type=”text” value=”‘ . ( is_search() ? get_search_query() : ‘DEFAULT SEARCHBOX STRING’ ) . ‘” name=”s” id=”s” />
<input type=”submit” id=”searchsubmit” value=”‘. esc_attr__(‘Go’) .'” />
</form>’;
}
add_filter( ‘get_search_form’, ‘wpse50321_alter_search_form’, 99999 );Forum: Themes and Templates
In reply to: Disable Responsive menu#click-menu {
display: none;
}
This is the solution.Forum: Themes and Templates
In reply to: Trying to delete the long linesYou can remove the botttom line for image and text by using the following css :
.widget {
border-bottom: medium none;
}Forum: Themes and Templates
In reply to: [Hueman] Disable YouTube Related Videos In the EndYou have to add rel=0 after youtube source url in that link :
src=”<youtube-url>?rel=0″
For eg : src=”https://www.youtube.com/embed/HnbMYzdjuBs?rel=0″
Forum: Themes and Templates
In reply to: [Oblique] unresponsive background image, headerFor the header the image is used as a background bot for posts its as a image So you have to adjust the style for background-image after a particular width. For eg.,
@media all and (max-width:479px) {
.site-header {
background-size: contain !important;
max-height: 200px;
}}Forum: Themes and Templates
In reply to: change custom post type permalink structure and remove slugYou can customize your permalink for custom post type by the plugin :
https://www.ads-software.com/plugins/custom-post-type-permalinks/Forum: Themes and Templates
In reply to: Changing Sidebar Background ColorThat css is coming from index file. That is theme functionality.
So you can overwrite it like the following style.#secondary {
background: transparent none repeat scroll 0 0 !important;
}Forum: Themes and Templates
In reply to: [Kerinci Lite] Want to remove excerpt from homepagefunction replace_content( $excerpt ) {
if(is_front_page()){
return get_the_content();
}
}
add_filter( ‘the_excerpt’, ‘replace_content’ );Forum: Themes and Templates
In reply to: [Publication] Remove sidebar 1 or 2 :-)This is the css for your sidebar and content area:
div#primary {
max-width: 870px;
width: 100%;
}
div#secondary {
max-width: 300px;
width: 100%;
}Forum: Themes and Templates
In reply to: [Elmax] Responsive menu not showing.The following code is the solution for your responsive menu issue:
jQuery(document).ready(function(){
jQuery(“.menu-toggle”).click(function(){jQuery(“.main-navigation .menu”).toggleClass(“show”);});
});.menu.show {
display:block;
}Forum: Themes and Templates
In reply to: difrent style class for difrent categoryTry this code:
$cat = get_category( get_query_var( ‘cat’ ) );
$cat_name = $cat->cat_name;echo ‘<div class=”‘;
echo $cat_name;
echo ‘”>’.get_the_time(‘F j, Y’).'</div>’;Forum: Themes and Templates
In reply to: How do I change my themes-wrapper color?You can remove the shadow of the wrapper by the following css:
.boxed #theme-wrapper-inner {
box-shadow: none;
}Forum: Fixing WordPress
In reply to: Duplicate Page FunctionTry this plugin for your solution:
https://www.ads-software.com/plugins/duplicate-post/Thanks.
Forum: Themes and Templates
In reply to: [Zerif Lite] Header sizeIt will change according to the theme which you are using.For advanced themes there will be an option for resize it.
For basic wordpress themes you use the below code :
.site-header {
height: 250px;
}