Christopher Nawoichik
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Posts Page Not RespondingI got the Blog Home template to correctly assign to the Blog page I created, but it still does not edit. The template is Page with Sidebar. However, tweaking the blog feed of that template will not change how it appears on the Blog page.
In other words, I cannot edit the image specs, fonts, colors, etc. of the post feed under Edit Site for this template and have it correspond with the changes I made on the actual Blog page.
Forum: Fixing WordPress
In reply to: Posts Page Not RespondingThanks for the info. Still no progress.
I tried editing the Posts page after assigning it to Latest Posts under Settings – Reading. It still does not appear properly (had to unassign it), and I am searching for how to edit the template of the given page.
I am beyond confused with these later versions of “site editing” over the past year. The only thing I can do is keep troubleshooting by trying new things. I will try creating new test pages with a template for blogging.
Forum: Localhost Installs
In reply to: Self Hosting WP Site with External Hard Drive on Mac@sterndata, I believe my ISP does. Nevertheless I am willing to switch ISPs in the future if necessary.
Thank you for understanding my sentiment. I think the Internet will be a much better place the more people take their power back on their own platforms. That is one of the reasons I like WordPress and open source software.
Forum: Localhost Installs
In reply to: Self Hosting WP Site with External Hard Drive on MacI shall figure it out.
Forum: Localhost Installs
In reply to: Self Hosting WP Site with External Hard Drive on MacI disagree. I think it’s a very good idea for one who values self-reliance and the ability to control one’s content with freedom. I do not like the present-day infrastructure of tech corporations censoring content they do not like (i.e. Google) and having power over an individual’s content.
I am an advocate of free software and the ideals of personal sovereignty. Obviously, being competent in the security for one’s machine is essential.
Thus I know my idea is possible; I was just looking for guidance on how to do it.
Forum: Fixing WordPress
In reply to: Editing CSS in Twenty Seventeen Child ThemeAnother question on the child theme:
Is it wise to make identical copies of all the files or templates from the parent—and insert them into the child theme so that I have access to any custom changes I want to make in the child? Will this cause any speed problems?
This is for organizational purposes, assuming I can actually get the child’s style.css to override the parent.
Forum: Fixing WordPress
In reply to: Editing CSS in Twenty Seventeen Child ThemeOkay, that was the problem. I am learning CSS, and didn’t know about the need for those extra curly brackets.
Thanks.
Forum: Fixing WordPress
In reply to: Editing CSS in Twenty Seventeen Child ThemeFor example:
@media screen and (min-width: 48em)
.wrap {
max-width: 1200px;
padding-left: 1em;
padding-right: 1em;
}It opens the red-lined “error” box saying an error exists, and asks whether I want to proceed even though it may break the site. It will not go away until I delete the entire top line (@media rule).
Forum: Fixing WordPress
In reply to: Editing CSS in Twenty Seventeen Child ThemeThanks for your help. I looked over your code carefully, but realized it matches what I entered.
I am still perplexed as to why I cannot enter CSS into style.css without an error message. Nevertheless, @media hooks do not work on the custom CSS panel.
Is there additional code required to enqueue ‘responsive’ @media hooks?
Forum: Fixing WordPress
In reply to: Editing CSS in Twenty Seventeen Child ThemeI’ve been working with the custom CSS panel, but still cannot make changes from style.css. Style.css has nothing in it but the enqueuing code.
I’m wondering: (1) Did I enque the child theme over properly? I used the updated code from the WordPress repository on properly enqueuing scripts, which says not to use the @import “hook”—which slows it down:
function my_theme_enqueue_styles() { $parent_style = 'twentyseventeen-style'; // This is 'twentyseventeen-style' for the Twenty Seventeen theme. wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( $parent_style ), wp_get_theme()->get('Version') ); } add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );*Also, (2) what about responsive CSS? Every time I try @media queries before the code—in both custom CSS panel and Style.css—it gives me error messages. Thus I am entering the rules in properly.
Forum: Fixing WordPress
In reply to: Editing CSS in Twenty Seventeen Child ThemeThank you for the feedback.
Regarding Steve’s comment, I entered the CSS at the very bottom of my style.css, which has nothing in it so far, other than the skeleton text at the top.
- This reply was modified 8 years, 2 months ago by Christopher Nawoichik.