Tasha
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Bootstrap Vertical Menu in sidebar stacking order problemAnyone that can help with this problem please? When resizing the window from smaller screens to full screens the vertical menu which (is in the side-bar) stretches over the full screen, pushing everything else on the page down.
http://www.hlsmentors.angelicdesign.co.uk/
Thank you very much
Tash[Moderator Note: No bumping, thank you.]
Forum: Fixing WordPress
In reply to: Bootstrap Vertical Menu in sidebar stacking order problemI’ve come a little closer to a solution. It actually works fine with the below script. The menu display at the top of smaller screens as I want it, except when I resize the window back to full width the menu display as a full width menu pushing everything else on the page down. So it looks as if it doesn’t resize back to the sidebar – if that makes any sense. Could that be a CSS problem? I now also have a link that I can post – I haven’t done any styling, I’m still busy with the positioning:
http://www.hlsmentors.angelicdesign.co.uk/
<script type="text/javascript"> $(window).resize(function(){ if ($(window).width() <= 768){ $(document).ready(function() { $('#sidebar-nav').insertAfter('#myJumbotron'); }); } }); </script>Any help would be much appreciated.
Thanks
TashForum: Themes and Templates
In reply to: [Customizr] Downloadable Child theme?🙂 Love it! I hope you blog? You seem to have a natural flair for it!
Forum: Themes and Templates
In reply to: [Customizr] Downloadable Child theme?Chappie, when I started I also thougth it was a little overwhelming, but I realised I was stressing for nothing. You probably have a bit of information overload and are now over-thinking things. If you mess it up you can just reinstall. You can do that a million times until you get it right. Maybe that will take the stress factor away?
If you follow the tutorials step by step you will get it without a doubt. There are also loads of youtube videos that takes you through the process. Try follow one of them? Don’t overwrite the Parent code! Can’t stress that enough!!! Start with just the style.css, don’t worry about functions.php for now. I use notepad++ which is a free editor you can download, try that.
You could not be learning on a better theme. The author and contributors are amazing. Stick with it you will get it.
Forum: Themes and Templates
In reply to: [Customizr] Adjust sidebar widthNot as far as I know but if you start a new thread (I think this one is marked as resolved so they won’t look at it) someone with more experience might be able to help.
Forum: Themes and Templates
In reply to: [Customizr] Adjust sidebar widthSorry for my very late reply! What you need to do – is:
Move this code in your custom template:
do_action( ‘__fp_block’ );
to just above the footer call, so just before:
get_footer();Hope that helps.
Forum: Themes and Templates
In reply to: [Customizr] Width of header and pages@bsal62 I don’t really know what to suggest. This is the full code of the original custom-page.php
<?php /* Template Name: Custom Page Example */ get_header(); do_action( '__fp_block' ); do_action( '__breadcrumb' ); ?> <div class="container" role="main"> <div class="row"> <?php do_action( '__sidebar' , 'left' ); do_action( '__loop' ); do_action( '__sidebar' , 'right' ); ?> </div><!--#row --> </div><!-- #container --> <?php get_footer(); ?>[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
What does yours look like?
Forum: Themes and Templates
In reply to: [Customizr] Width of header and pagesGlad to help!
Forum: Themes and Templates
In reply to: [Customizr] Width of header and pages@stefanow12 I added the shortcode (in my case [metaslider id=2011]) straight to the page, so:
In WordPress admin > Pages > Home insert the shortcode.
Does that make sense?
Forum: Themes and Templates
In reply to: [Customizr] Width of header and pages@bsal62 What I did is the following:
Move this code:
do_action( ‘__fp_block’ );
to just above the footer call, so just before:
get_footer();That should move it below what ever you put in the homepage.
Regarding the sidebar: Did you select Right or left sidebar in your homepage. So in Pages > Home (or what ever you called the page) look for Layout Options and select your sidebar.
Also, in Customiz it! > Frontpage > Set up the front page layout > choose the correct sidebar.
If you’ve done that make sure you have something in the sidebar: Appearance > Widgets > Add what ever widget you want to display in the correct sidebar.Hope that helps!
Forum: Themes and Templates
In reply to: [Customizr] Width of header and pagesHi, apologies for the slow reply.
I made my own custom template from the “custom example template” which uses two columns. I then disabled the default slider: Customiz it! > Front Page > slider options. Then choose “No Slider”.
I then added the shortcode for the Meta Slider Light plugin to my custome home page and added widgets as normal for the sidebar.
Hope that helps!
Forum: Themes and Templates
In reply to: [Customizr] Loads of problems after updateOk, I think you are right. I still have a copy of the old version. Hopefully tomorrow we can sort it. Thanks ElectricFeet!
Forum: Themes and Templates
In reply to: [Customizr] Problem with featured image in IE@andrew Nevins @nikeo It looks like something I did broke this. I added images to the Eco-School page with the round hover effect with code from Nikeo. Could that have effected your code Andrew?
http://wordpress.org/support/topic/hover-effect-on-images-not-working-correctly?replies=3
Any idea what it could be?
Sorry!
Forum: Themes and Templates
In reply to: [Customizr] Custom navigation menu in headerResolved
Forum: Themes and Templates
In reply to: [Customizr] Custom navigation menu in headerJust in case anyone else is looking for a solution. It was much easier than I thought it would be. The following code from Syed Fazle Rahman in this article worked really well http://www.sitepoint.com/building-responsive-websites-using-twitter-bootstrap/)