Luke Stacey
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Sugar and Spice] Custom Header and Background for Single PageHi there Audrey,
For some reason we can’t see your links. Could you post them again?
You can create a custom background image or color on a single page with some simple CSS rules.
However, in order to create a custom header for just one page you’ll need to work with php.
The first thing I recommend, if you haven’t already done so, is setting up a child theme. Child themes are the safest way to go when doing any kind of customizations.
You can read about setting up a child theme here.
Hopefully we can help you more 🙂
– Luke
Forum: Themes and Templates
In reply to: [Fifteen] i would like to remove Theme authorHi there,
Do you mean the theme credits in the footer? If so…
In your WordPress dashboard go to:
1. Appearance – > Fifteen Settings
2. Click on the tab that says ‘Support’
3. Scroll down to where it says ‘Theme Credits’ and check the box that says “Check this if you do not want to give us credit in your site footer.”
4. Click ‘Save Options’.
Refresh your site and the credits will be removed from the footer.
I hope that helps 🙂
– Luke
Forum: Themes and Templates
In reply to: [Hemingway] Change text size on pages & postsHi Katharine,
If you just want to increase the size of the paragraph text (not the titles) you can use this:
p { font-size: 110%; }* Set the font size of the paragraph element to greater than 100% or change it to a fixed pixel width such as 20px.
You should place the above code in your custom css child theme style.css. Child themes are the safest way to go when doing any kind of modifications.
I hope that helps!
– Luke
Forum: Themes and Templates
In reply to: [Fifteen] Change Collor Background PostBorder color around the images:
#primary-main .main-article { border: 10px solid #FFFFFF; }Just change the #FFFFFF to whatever color you want.
Just in case you want to know how to change the background of the box once it has zoomed in, use this:
.feat-thumb-holder { background-color: #ffffff; }Your not being a pest at all. I’m glad to help! 🙂
– Luke
Forum: Themes and Templates
In reply to: [Fifteen] Change Collor Background PostHi there,
I think this is what you are looking for to remove the gray from the posts:
.single #content, .page #content { background-color: #ffffff; }and perhaps this for the front page:
#primary-main { padding-top: 25px; background-color: #ffffff; } #content { background-color: #ffffff; }I hope that’s what you are looking for. Let us know who it goes 🙂
– Luke
Forum: Themes and Templates
In reply to: [Ward] logoHi Greg,
It’s great to hear you are using a child theme!
To include this code you need to make a copy of your ‘header.php’ file and place it in your child theme directory.
Look for this line of code (line 38ish):
<a id="site-title" class="navbar-brand" href="<?php echo esc_url( home_url() ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?> <small><?php bloginfo( 'description' ); ?></small></a>If you want to keep the Site Title place the code below (i.e. around line 39).
If you don’t want to keep the Site Title you can remove the above code and just replace it.
<div class="header-image"> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"> <img src="<?php echo get_stylesheet_directory_uri(); ?>/images/logo.png" alt="Logo"/> </a> </div>The img tag contains slightly different code from the previous post to take into account that you are using a child theme.
get_template_directory_uri – – > get_stylesheet_directory_uri
And you’ll still need to place your logo.png file in your
wp-content/themes/ward-child/images
or whatever name you gave your child theme folder.
I hope that works for you! Let us know how it goes 🙂
– Luke
Forum: Themes and Templates
In reply to: [zeeDynamic] Removing White Space between logo & navigation menuHi there,
Can you post a link to your site so I can see exactly what’s going on?
I have that theme installed and the CSS is working just fine:
Hopefully we’ll work it out 🙂
– Luke
Forum: Themes and Templates
In reply to: [Fruitful] Product Categories not showingYou don’t have to create pages for each category and subcategory.
If you go to:
Appearance –> Menu
You can add links to categories and subcategories.
subcategories are displayed in blocks, just like products, instead of a tree
If you want to display you categories in a tree, like this Screenshot then you could use the ‘WooCommerce Product Categories’ widget.
Regarding your ‘page not found’ issue – perhaps you could post to the ‘Plugins and Hacks’ forums ?
I hope that helps.
– Luke
Forum: Themes and Templates
In reply to: [Fruitful] Product Categories not showingCan you post a link to your site so I can see exactly what you mean?
Forum: Themes and Templates
In reply to: [Vantage] Overall color changeHi,
I don’t think you can change the colors of this theme via the appearance panel so you’ll need to make CSS edits.
The best (and most recommended) way to do this is by creating a child theme. Child themes are used to override only specific styles of the theme. Everything else is determined by the parent (original) theme.
You can learn about creating a child theme here:
http://codex.wordpress.org/Child_Themes
If you specify exactly what you want to change then you can get lots of help on these forums. All you would have to do is post the correct code in your child theme’s style.css .
If you really don’t want to use CSS there is a plugin called ‘Theme Tweaker’ that allows you to change the colors without css editing. However, you might lose these changes when your theme updates.
I hope that helps!
– Luke
Forum: Themes and Templates
In reply to: Align Paragraph centerLike this:
Some themes have an option to add custom css but this is in danger of being lost when your theme updates. (I don’t think Luminescence-lite has this option).
The best and most recommended way to do it is by creating a child theme.
http://codex.wordpress.org/Child_Themes
This is the code you need once your child theme is set up:
.category-header p { text-align: center; margin: 0 50px 0 50px; }I hope that helps!
– Luke
Forum: Themes and Templates
In reply to: [Fruitful] Product Categories not showingAre you using Woocommerce?
If so go to:
Woocommerce – > Settings – > – > Products (Tab)
Look for ‘Shop Page Display’ and change to ‘Show Subcategories’.
Now when you go to the ‘Shop’ page you should see your list of categories rather than a list of products.
I hope that helps!
– Luke
Hi,
Do you want to completely remove it, like this :
If so put this CSS into your custom css or child heme style.css so that you won’t lose all the changes made when the theme updates.
Child themes are the safest way to go when doing all kinds of modifications.
.entry-comments-link { display: none; }I hope that helps!
– Luke
Forum: Themes and Templates
In reply to: Align Paragraph centerHi,
I had a look at your site but I’m not sure what part you mean. Can you send a screenshot of the text you want centering?
I thought perhaps could be the text under ‘Colunas’ ?
You can center like this :
If thats right put this CSS into your custom css or child theme style.css so that you won’t lose all the changes made when the theme updates.
Child themes are the safest way to go when doing all kinds of modifications.
#equal-well a { margin-left: 75px; }Let us know if we can help more! 🙂
– Luke
Forum: Themes and Templates
In reply to: [Adelle] top menu header customisation – get rid of search barYou can ‘access’ your CSS by going to:
Appearance -> Editor -> Stylesheet (style.css)
However, any code you paste or change here will be overridden when the theme updates.
The most recommended option for custom code is to create a child theme.
A child theme allows you to add only your customizations to the style.css file and remains effective even when you update your theme.
To create a child theme you can read about it here:
http://codex.wordpress.org/Child_Themes
The basic steps are :
1. Navigate to the directory wp-content/themes/
(Using an ftp client or File Manager in Cpanel)2. Create a new folder called ‘adelle-child’
3. Create a new file in that directory called style.css and paste in this code:
/* Theme Name: Adelle Child Theme URI: http://example.com/adelle-child/ Description: Adelle Child Theme Author: Laura Author URI: http://www.lauralovesbeautyblog.com Template: Adelle Version: 1.0.0 */ @import url("../adelle/style.css"); /* =Theme customization starts here -------------------------------------------------------------- */ /* Remove Search Bar*/ .header-form { display: none; }4. Now you have to activate the child theme in your WordPress Admin area:
Appearance – > Themes – > Adelle Child Theme – > Activate
5. Your child theme is now set up and your customizations will take affect.
Good luck and I hope that helps 🙂
– Luke