YajYolid
Forum Replies Created
-
Hi coated_pill,
Do you just want to change the text on your footer or do you want to remove it totally?
can you give me the link to your site so that I check?
Hi coated_pill,
If you only make the footer customization under parent theme chances are when the parent theme perform an update the default footer will return, that’s why it is advisable to do any customization in your child theme even if it is only footer. And who knows, you will see another part of it that you want to customize as the days go by.
I hope that helps. Regards.
Hi dssguy99,
I hope you already have created and activated your child theme before you do some customization, and if so, you can use the following CSS rule to eliminate the small border on the top and bottom of each page.
#page {
margin: 0 auto;
}Forum: Themes and Templates
In reply to: Change Menu Bar ColorYou can also create a new folder on your desktop and name it with chooko-lite-child, inside the folder create a file style.css and put the necessary lines as said in the codex for child theme. Create a zip file and copy the folder into the zip file, upload the zip file of the child theme in your wordpress dashboard and activate it.
Forum: Themes and Templates
In reply to: [Mantra] Adding a slideshowYes it is very much possible to add the slideshow between the header area and the menu. You can do this in your header.php file.
Forum: Themes and Templates
In reply to: [i-transform] Page titles in blue barCan you give the link of your site so we can figure out more what will be the best way to fix it?
Forum: Themes and Templates
In reply to: Change Menu Bar ColorHi mmilojko,
First, before you make any customization on your theme, you must create a child theme of (in your case) Chooko Lite Theme. You can read about child theme here: https://codex.www.ads-software.com/Child_Themes
On the stylesheet of you child theme you can use the following css rule to change the background of your menu bar.
#navbar > .menu-container {
background-color: #EB9F9F;
width: 960px;
}note: the #EB9F9F is the default color, so you change it with the color you want.
As I have inspect your h1 tag, it has already a color:#253944.
Forum: Themes and Templates
In reply to: [Hueman] How to add slider to Home page if used a static page?Hi wxa,
When I used meteor slideshow plugin and add it only on the hompepage I used this code on the header.php file
<?php if ( is_front_page() ) {
if ( function_exists( ‘meteor_slideshow’ ) ) { meteor_slideshow(); }
} ?>
Forum: Themes and Templates
In reply to: McKinley CSS ModificationsYou can use developer tools to play around with css. If you use firefox as your browser, try firebug to inspect elements.
Forum: Themes and Templates
In reply to: McKinley CSS Modifications#header {
max-width: 100%;
}Forum: Themes and Templates
In reply to: [Coraline] Adding Theme Customization OptionsWell, since I am not really a coder, I am not sure. All I know is, if you want to add a new function to your theme, you can create a new function.php file in your child theme. Unlike stylesheet and other php file, if you put it on the child theme it will override the file from its parent theme, but in the case of function.php, if you will put any new functions it will only be added but not override the existing function.php on the parent theme.
Forum: Themes and Templates
In reply to: [Scrappy] Color changed on side bar titles and I don't know whyYes the linen texture is an image. You don’t need to uninstall your wordpress, I think you only have done something that prevent the image to appear. I can’t say exactly what to do since I don’t have access to your dashboard to see what went wrong.
Forum: Themes and Templates
In reply to: [Scrappy] Color changed on side bar titles and I don't know whyThe main background and the widget background has an image which is included in the theme file. You can add the follwing CSS rule in your stylesheet:
`#secondary h2.widget-title, #secondary h2.widget-title a:link, #secondary h2.widget-title a:visited {
background-image: url(“img/gbg.gif”);
}body.custom-background {
background-image: url(“https://wp-themes.com/wp-content/themes/scrappy/img/bg.gif”);
}