lanigiro
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Creating a drop down menuHi Tanya,
I’m not using inbuilt wordpress menu feature.I’m making menu hardcoded in header.php because this menus are linked to custom posttype pages.
cheers!
Forum: Themes and Templates
In reply to: Text Won't Wrap Around Images inside the PostAfter hours I found and added this piece of code which solve this problem.
/* Alignment */
.alignleft {
display: inline;
float: left;
margin-right: 1.625em;
}
.alignright {
display: inline;
float: right;
margin-left: 1.625em;
}
.aligncenter {
clear: both;
display: block;
margin-left: auto;
margin-right: auto;
}`Forum: Fixing WordPress
In reply to: Why “custom.css” not showing up in firebug style panel?Hi stephencottontail,
Thank you for your timely and helpful assistance mate. I really appreciate your help in resolving the problem. It was very difficult for me to find the problem and right code.Cheers!
Forum: Fixing WordPress
In reply to: Why “custom.css” not showing up in firebug style panel?At the moment only my child stylesheet is loading in firebug style panel.
Forum: Fixing WordPress
In reply to: Why “custom.css” not showing up in firebug style panel?Hi stephencottontail,
Can you offer me functions code that to replace my child style.css. Which will not allow my child style.css to load and instead will load custom.cssForum: Fixing WordPress
In reply to: Why “custom.css” not showing up in firebug style panel?I want to load my custom.css instead parent style.css
Forum: Fixing WordPress
In reply to: Why “custom.css” not showing up in firebug style panel?<?php
function child_theme_enqueue_styles() {
wp_register_style( ‘style_desktop’, get_stylesheet_directory_uri() . ‘/style_desktop.css’, array( ), NULL,’media=”only screen and (min-width: 1024px)”‘);
wp_enqueue_style( ‘style_desktop’ );wp_register_style( ‘custom_menu’, get_stylesheet_directory_uri() . ‘/css/custom_menu.css’, array( ), NULL );
wp_enqueue_style( ‘custom_menu’ );
}
add_action( ‘wp_enqueue_scripts’, ‘child_theme_enqueue_styles’ );Forum: Fixing WordPress
In reply to: How to show excerpts on home page in WordPress (using TwentyNeoTechnomad, Thank you for your time, patience, and persistence. I am trying all, but nothing have an affect.
Forum: Fixing WordPress
In reply to: How to show excerpts on home page in WordPress (using TwentyUnfortunately, and this suggestion has no effect.
Cheers!Forum: Fixing WordPress
In reply to: How to show excerpts on home page in WordPress (using TwentyThank you for all your help.
I know that, but if i change “is_home or is_search” nothing happens, i tried all of them.Forum: Fixing WordPress
In reply to: How to show excerpts on home page in WordPress (using TwentyEverything I have done is correct. Nothing happens. I tried new method: https://johngirdwood.com/2015/12/21/show-excerpt-snippets-on-blog-for-wordpress-twenty-sixteen-theme/ but it show only title the text snippet is hidden.
Forum: Fixing WordPress
In reply to: How to show excerpts on home page in WordPress (using TwentyHi NeoTechnomad,
Thank you for your response to the question.
I only need to change both instances of Twenty_Sixteen to my child theme name im right? I dont need to follow the instructions on that site.
Cheers!Thanks so much for your very detailed response!
The second piece of code is the code that is my solution.
Cheers!