Luke Stacey
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Changing font size for all pagesYou could do it this way:
1. Make a child theme.
2. Copy the content-single.php (for posts) and/or content-page.php (for pages) file from the parent theme into the child theme.
3. Locate the
the_content()function in the content-single.php /page.php file.4. Add in your html (the content you want on every post) after the function.
5. Save the file.
Then it will appear at the bottom of every post/page.
Good luck learning to code 🙂
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [Virtue] How to Change Post Background Color?Hi there,
Are you trying to change the background color on all posts or specific posts?
If you post a link to your site perhaps we can suggest a solution for you.
🙂
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [Minamaze] WooCommerce simplify checkout processHi there!
You could skip the shopping cart page and redirect to the checkout page using this plugin:
I hope that helps!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: Changing font size for all pagesIf you want that content to appear at the bottom of every page, rather than in your ‘Contact Info’ widget then you could use this plugin:
After you install on your admin dashboard go to :
Settings -> SCS
Click on ‘Custom Content using Shortcodes’ and in the text area called ‘Shortcode for Specific Posts’ paste your content:
<p>Call us today at (714) 454-9292. Email us at <a href="mailto:nn@ocparalegalservices.com">nn@ocparalegalservices.com</a>.<br> We specialize in Divorce, Immigration, Legal Document Services, Probate and more.</p>Scroll down to the bottom of the page and click on ‘Save Settings’.
Add this shortcode to the bottom of all your pages :
[scs_post]and it will display the content for you.Then you only have to change it once in the Settings -> SCS area ! 🙂
The first thing you need to do is create a child theme so that your changes will not be lost when your theme updates.
You should not edit the theme files directly.
Once you have your child theme set up you need to copy the header.php file from the pictorico theme folder and paste it into your child theme folder.
Now, you can edit the header.php file that is in your child theme folder. (Appearance -> Themes -> Editor)
Add this HTML:
<p class="custom-text">Write your text here</p>after this line (around line 22)
<div id="page" class="hfeed site">Finally, you need to add some CSS to your child themes style.css.
Something like this (values will depend on the amount of text you are using):
.custom-text { margin-bottom: 0; margin-left: 88%; }will achieve this : Screenshot
I hope that helps you out a bit 🙂
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [Customizr] The header hides my secondary menuHi there!
Could you post a link to your website so we can take a look and make some suggestions for you? 🙂
Luke the Daft Duke
Hi there!
Yes, sure that is possible. Could you post a link to your website and I will do my best to point you in the right direction 🙂
Luke the Daft Duke
Forum: Installing WordPress
In reply to: Header and LogoHi there!
Could you post a link to your website and I’ll take a look and try to make a suggestion for you 🙂
Luke the Daft Duke
Forum: Themes and Templates
In reply to: Help to set site on centerHi there!
I think I have found a solution for you 🙂 :
#content-area, #et-info, #footer-info { margin-left: 9%; } .et_right_sidebar #main-content .container:before { right: 180px; }You have two options when using this code:
#1 Use a custom css plugin like Simple Custom CSS and place the code in there.
or
#2 Create a child theme and paste the code into your child theme’s style.css.
I hope that helps!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: Woocommerce in iFeatureHi,
It’s all done using custom CSS but, if you are going to make a lot of changes I would recommend using a child theme.
If you are using firefox, I suggest installing firebug and right click on the element you want to change and choose ‘Inspect Element with Firebug’.
When you get it how you want it, right click and choose ‘Copy Rule Declaration’ and then paste it into your child theme’s style.css or custom css area.
Adding a horizontal rule might be a little trickier as that is a HTML element
<hr>. It would depend where exactly you want to put it and whether you wanted it on every page etc.I hope that helps a bit!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: Changing font size for all pagesHi there!
You can use this CSS :
body { font-size: 16px; }and choose one of the two options below:
#1 Use a plugin like Simple Custom CSS and paste the code in there.
or
#2 If you are planning on making a number of changes create a child theme and paste the code in the child theme’s style.css file.
I hope that helps!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: Woocommerce in iFeatureHi there!
Try reducing the width of either the image or the summary.
By reducing the image to 46% it seems to fit nicely:
.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images { float: left; width: 46%; }I hope that helps!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: Remove 'add to basket' from products thumbnailviewHi again 🙂
Like this?
If so, try:
.grid-view .grid-elem .cart-options ul > li a { display: none; } .grid-view .grid-elem .cart-options ul > li .safe-for-later a { display: none; }I hope that helps!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: Styling cart icon fontsize and colourHi again!
Is this what you trying to achieve?:
If so, you can change the color and reduce the size of the number using this:
.gbtr_little_shopping_bag .minicart_items i { background: none repeat scroll 0 0 #COLOR CODE HERE; font-size: 10px; height: 15px; line-height: 14px; margin-right: 5px; text-align: center; width: 15px; }Just enter your own color where it says ‘COLOR CODE HERE’.
I hope that helps!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [Arcade Basic] Child theme doesn't workHi there!
That sounds strange 🙂 Can you post a link to your site and maybe we can find a solution.
Cheers,
Luke the Daft Duke