rustinpeace91
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Basic page editor functions do not workThis seems to have worked. Thank you!
Forum: Themes and Templates
In reply to: [theme:Mantra] Can't change the fontOk so I figured it out. It turns out I had to install a separate plugin called cryout serious theme settings to change things like font color and size and stuff. They had to remove those settings from the standard customize bar after a WordPress update or something.
I got it working now, but I still don’t get why my CSS wasn’t working.
Forum: Themes and Templates
In reply to: [theme:Mantra] Can't change the fontI tried that. It got rid of the text shadow but none of the other changes were implemented.
I tried googling this and checking the FAQ of the Mantra website. It has a section for implementing font changes on the menu items, but not on the headings of the posts themselves
http://www.cryoutcreations.eu/faq/e5-c18-where-are-the-menu-fontcolour-options
Should I just switch themes? I don’t understand why I can’t make this simple change.
Forum: Themes and Templates
In reply to: [theme:Mantra] Can't change the fonthttps://wordpress.org/themes/mantra/
Here you go. I want to change the title. The thing that says “Worth a thousand words”
Here’s how I’m trying to do that.
h2.entry-title { color:green; font-family:sans-serif; text-shadow:none; }Forum: Themes and Templates
In reply to: [theme:Mantra] Can't change the fontI want to change the post titles to sans-serif, green and eliminate the text shadow.
I was previously able to change the background to gray, so It’s not an issue with my child theme either.
I tried removing the “style.css” and it made my website not work. Can someone let me in on what the syntax should look like? I should probably learn some php.
Would I get better results if I learned to manually set up a local server instead of using MAMP?
I did it in the customization options
Still not working. Just the old black and white background.
Why does using MAMP affect whether .css loads or not?
twenty-sixteen-child
and I have it on a local server on my computer, so no can do right now.
Tried copying and pasting your code. Still no dice 🙁
I really hope i don’t have to learn PHP to do this. From all accounts I’ve heard it’s a massive pain in the ass and I already learned HTML and CSS
I tried copy pasting the code into functions.php Unfortunately it turned everything into raw html. I then looked at some other .php files (I’m really not familiar with PHP, I only know HTML and CSS)
and realized they had <?php and ?> in between a lot of stuff. So I tried doing that so it looked like this<?php function twenty_sixteen_child_enqueue_styles() { $parent_style = 'twentysixteen'; wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'twenty-sixteen-child', get_stylesheet_directory_uri() . '/style.css', array( $parent_style ) ); } add_action( 'wp_enqueue_scripts', 'twenty_sixteen_child_enqueue_styles' ); ?>Still no dice. My web page still has the blank white styling to it.
Forum: Fixing WordPress
In reply to: Editing the style.css sheet of my theme isn't doing anything.I just pasted your code into the “Custom CSS Manager” tab in the dashboard and it worked, but when I edit the themes style.css file and type the same code in the same place it doesn’t work.
Forum: Fixing WordPress
In reply to: Editing the style.css sheet of my theme isn't doing anything.I found it. It was under “appearance.” I guess. It worked in changing the font. Why does it not work when I do the same edit in Sublime Text 2? I’d prefer to use that program since I already have to use it to find the class I’m looking for.
Forum: Fixing WordPress
In reply to: Editing the style.css sheet of my theme isn't doing anything.I installed the plugin but there is no “CSS code” or “Custom CSS Manager” tab in my dashboard or in my settings.