bradthomas127
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Leaf] Help showing main side bar in blog post pageRemove all the widgets from the home sidebar and place them in the main sidebar.
Forum: Themes and Templates
In reply to: [Leaf] Leaf Image Attachment Page Showing Published DateTry this in the custom CSS option.
.image-attachment .entry-meta { display: none; }
Forum: Themes and Templates
In reply to: [Leaf] How can I make my layout look exactly like this?@tizz -Thanks for all your help, I think i’m getting this resolved though e-mail right now.
Forum: Themes and Templates
In reply to: [Leaf] Recent Post not showing on main pagesLeaf uses a home page template, You should also set up your standard blog template by adding a new page and from the “Page Attributes” meta box, under “Template”, select the “Blog” template and then click update.
You can also set this as your home page from the WordPress Reading Settings.
Go to “Settings” => “Reading Settings” and you will see the section where it says “A static page”Forum: Themes and Templates
In reply to: [Leaf] more than one dropdown menuYes you need to set up a custom menu. YouTube custom menu
Forum: Themes and Templates
In reply to: [Leaf] Search pageThanks, i will try to do it differently on the next update. That only shows when you are logged in, logged out Will look like this: DEMO Search results.
Forum: Themes and Templates
In reply to: [Leaf] sidebar too far leftTry this in the custom CSS option:
#secondary {padding-left: 117px;}
Forum: Themes and Templates
In reply to: [Leaf] increase header banner?If you go to your Dashboard => Appearance => Leaf options add it to the custom CSS text-area and save options.
Forum: Themes and Templates
In reply to: [Leaf] Favicon errorUpload your favicon.ico to your root directory(www.yourwebsite.com/favicon.ico) by FTP or by logging into your host and uploading it. That is the proper way of doing it and not through theme options like some themes do. It might take a little while before it starts showing up in your browser, try clearing your browser cache.
Once it is in your root directory you should be able to see it by going to yourwebsite.com/favicon.ico like this: https://fatboythemes.com/favicon.ico
Edit: If you would still rather do it through the dashboard you could use a plugin: https://www.ads-software.com/plugins/all-in-one-favicon/
Forum: Themes and Templates
In reply to: [Leaf] how to make "full article" to be in orange colourCustom CSS option:
.read-more-link a { color: orange; }
Forum: Themes and Templates
In reply to: [Leaf] two widget in the "header widget area"Here i gave you the classes because i needed to have them in the header widget so i could get the ID. Replace the above CSS with this:
#social-widget-2 { width: 47%; float: left; } #transposh-2 { float: right; width: 47%; }
That number 2 after the ID was what i was looking for so it will not resize the other widgets.
Forum: Themes and Templates
In reply to: [Leaf] two widget in the "header widget area"Try this in custom CSS:
.Social_Widget { width: 47%; float: left; } .widget_transposh { float: right; width: 47%; }
Forum: Themes and Templates
In reply to: [Leaf] Choosing what to show on home categoriesNo, The first 5 most recent post will display in the slider, older post will go in the more articles section. In Leaf options you can multi-select Categories for the front page. You can chose what image you want to display for the post by selecting a featured image for that post. Featured Image YouTube
Try this in the custom CSS option:
.archive-header {display: none;}
Forum: Themes and Templates
In reply to: [Leaf] Fatal error: Cannot access the websiteLooks like you put the hook in twice. Do what boggie313 said and you should be doing your edits in a child theme. Leaf-Child GitHub