jamiebrwr
Forum Replies Created
-
You should add the code to your style.css file.
Forum: Themes and Templates
In reply to: [Spasalon] Problem with the "Home page Product Section"Awesome…
Good luck gabreeratti!
Forum: Themes and Templates
In reply to: [Stitch] Cannot access the theme's HomepageYes, sorry I was confused about your post I suppose. I’m not sure what the problem might be.
Forum: Themes and Templates
In reply to: [Customizr] Blog like feature on all three pages?You could further separate your content using custom post types.
Easy Custom Post Types is a great plugin for creating custom post types and custom taxonomies.
https://pippinsplugins.com/easy-content-types/
Does that help?
Forum: Themes and Templates
In reply to: how to make site title and logo appear on the right side?For the site title and description you can edit a couple css styles…
Logo and Title
file = style.css
Line: 412
#header .logo-wrap { padding-left: 20px; float: right; margin-top: 54px; min-width: 380px; }
Line: 454 (adjust width to what fits your logo best)
#header .social-search { float: left; width: 306px; padding-right: 20px; margin-top: 40px; }
Screenshot: https://cl.ly/image/0G1d183J3i2G
To enlarge the blog post thumbnails
1. Edit functions.php line 93 to the size you’re looking for.
2. Edit line 852 in style.css to what ever size you set the “add_image_size( ‘featured’, 410, 410, true);” to.
After changing these you will need to either regenerate your thumbnails or re-upload the images to create the new sizes.
Forum: Themes and Templates
In reply to: [Spasalon] Problem with the "Home page Product Section"Yeah I saw that after posting:)
The theme file index-product.php would need to edited, but since your not actually creating a post or product there’s really no where for it to link to using a permalink.
Does that help?
Try adding the styles below to your theme…
span.fotoautor { /* in author page */ display: none; visibility: hidden; } div.credito img:first-of-type { /* in single post */ display: none; visibility: hidden; } article.chamada p small img { /* in excerpts */ display: none; visibility: hidden; } span img.avatar { /* in pages */ display: none; visibility: hidden; } .entry-meta > p { /* in single post */ display: none; visibility: hidden; } .page > p { /* in page */ display: none; visibility: hidden; } .readtime { /* homepage */ display: none; visibility: hidden; }
Forum: Themes and Templates
In reply to: [Custom Community] Sidebar widget title background sizeIf you update the css for the #sidebar and .v_line_right it should work fine. Update the lines of code below in your style.css file and it should fix it. It worked for me anyway.
Screenshot: https://cl.ly/image/0W1Y0D1i1h1y
#container .row-fluid .span8, .row-fluid .span8 { width: 700px; }
div.v_line_right { right: 300px; }
div#sidebar { width: 225px; margin-left: -225px; }
Forum: Themes and Templates
In reply to: [Customizr] Menu Bar Width & PositionTry changing the class span number from 9 to 11…
<div class="navbar-wrapper clearfix span11">
TO
<div class="navbar-wrapper clearfix span11">
Forum: Themes and Templates
In reply to: [Stitch] Cannot access the theme's HomepageHave you try deactivating your plugins?
Forum: Themes and Templates
In reply to: [Customizr] Blog like feature on all three pages?I would create three categories, group the post into the appropriate category and then add category navigation links.
You could eliminate the 3 pages this way as well.
Forum: Themes and Templates
In reply to: [Vantage] How does this theme support WooCommerce?I’m not sure if it features that “template” but it probably has styles for WooCommerce elements (cart, account page, checkout etc.)
Although with a minimum amount of effort you should be able to add a list of products on the home page in a grid layout.
Forum: Themes and Templates
In reply to: [Iconic One] Can't use links on front pageAre typing your content into the editor or the excerpt?
If it’s the excerpt, try adding your content to the content editor and then setting WordPress to display excerpts in Settings->Reading.
Just throwing it out there…
Forum: Themes and Templates
In reply to: [Spasalon] Problem with the "Home page Product Section"Is there a particular theme or plugin your asking about?
Forum: Fixing WordPress
In reply to: Prev / Next Post navigation in single.php skipping postsWas there ever a solution to this?
I’m having the same exact issue.
I’m trying to use the code above along with several other snippets of code didn’t work for me.
I’m working with a custom post type (projects) and I’m trying to page through each post within projects. I deactivated all plugins and removed everything except style.css (simply importing parent theme) from my child-themes folder. I’m using a Wootheme.
Any advice?