Anthony Trivisano
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Inkblot] Custom Styles Different on BrowsersI would suggest you take a look at the base theme my work uses, of course we modified it heavily for our needs but it has a lot of components built in.
The theme above uses Foundation 5 as it’s front end framework, bower for plugin/script management, and gulp for easy building.
Also, take a look at Github and SVN in general. It is very important for development, almost a necessity really.
Forum: Themes and Templates
In reply to: [Hueman] Featured image not displayedIt all depends on where you are putting the image.
– If it is on an archive page then probably archive.php
– If on a single post then single.php
– If on a template then search files forTemplate Name:Forum: Themes and Templates
In reply to: [Inkblot] Custom Styles Different on BrowsersI have learned that anything pertaining to WordPress is not simple unless you put the time into the theory of how WordPress works. I used to struggle a lot with it until I started reading the books listed on their website.
Forum: Themes and Templates
In reply to: [SG Window] Mobile Menu Icon not workingHey mktoothman,
If you ever need help just shoot me a Private Message. I am always willing to help people that want to learn.
Forum: Themes and Templates
In reply to: [SG Window] Mobile Menu Icon not workingHey mktoothman,
From what I can tell by the Theme’s preview you are not doing anything on click. I suggest doing something like below.
jQuery:
$('.menu-toggle').on('click', function () { var _this = $(this), container = _this.closest('.horisontal-navigation').find('.nav-horizontal'); container.find('ul').toggleClass('active'); });CSS:
.horisontal-navigation ul.nav-horizontal.active, .horisontal-navigation div.nav-horizontal > ul.active { display: block; }Forum: Themes and Templates
In reply to: [Inkblot] Custom Styles Different on BrowsersHey michellespivey,
I think you should go read through the Documentation on Child Themes. From what I am understanding in your post is that you created a child theme off of inkblot and you are having troubles with your styling.
From what I can see, everything is the same on the Home page. I suggest you do a hard reload of each browser and clear the browser cache.
Furthermore, here are some tips:
1. Always develop locally or using a staging environment.
2. Incorporate SVN – Github is the easiest.
3. Try using JointsWP – This is what we use at my workplace as a base theme.
4. Always refer to WordPress’ Documentation.Forum: Themes and Templates
In reply to: [Hueman] Featured image not displayedHey There,
The documentation is your friend, I learned this the hard way.
https://codex.ww.wp.xz.cn/Function_Reference/the_post_thumbnail
<?php if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it. the_post_thumbnail( array( 'src' => $src, 'class' => "attachment-$size", 'alt' => trim( strip_tags( $wp_postmeta->_wp_attachment_image_alt ) ), 'title' => trim( strip_tags( $attachment->post_title ) ) ) ); } ?>