tomm3ke
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to reference to a different URL?Anyone have any suggestions?
Forum: Fixing WordPress
In reply to: How to add FB button to headerYou need to add position: absolute to your Facebook button.
Header.php
<div class="logo"> <a title="Gelnagels Gina" href="https://www.gelnagels-gina.be/"> <img src="https://www.gelnagels-gina.be/wp-content/uploads/2015/04/Gina4.png"> </a> <a title="Facebook-header" href="#"> <img src="https://www.gelnagels-gina.be/wp-content/themes/optimizer/facebook.png"> </a> </div>
CSS
.header-img-1 { left: 15%; position: absolute; top: 50px; }
Forum: Themes and Templates
In reply to: Child theme style.css is ignored@andrew, yes they are. If you can remove the posts, that would be great. Is it normal that when you create a post it isn’t visible in the list?
Forum: Themes and Templates
In reply to: Child theme style.css is ignored@layerthemes, thanks for the feedback! Yeah layout was messed up because I was testing things ??
I found that this does the trick too! I added the following to my childs functions.php file.
function enqueue_parent_theme_style() {wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );} add_action( 'wp_enqueue_scripts', 'enqueue_parent_theme_style' ); function enqueue_child_theme_style() {wp_enqueue_style( 'child-style', get_stylesheet_directory_uri().'/style.css' );} add_action( 'wp_enqueue_scripts', 'enqueue_child_theme_style', 100 );
Forum: Themes and Templates
In reply to: Child theme style.css is ignored@andrew, thanks for the issue with the forums.
What do you mean by specific selectors? I’ll probably need to add something extra to declare style.css needs to override style_core.css?
Forum: Themes and Templates
In reply to: Child theme style.css is ignored@andrew, I think I’ve found a piece of the puzzle!
The page_head section isn’t inside the style.css, but in the style_core.css section.
Forum: Themes and Templates
In reply to: Child theme style.css is ignored@andrew, I thought my questions were being blocked because I couldn’t see them in queue. You wouldn’t be able to delete the others I tried to make?
Forum: Themes and Templates
In reply to: Child theme style.css is ignoredHi Andrew,
That works, I added it and it’s displayed at the top (check website).
Forum: Fixing WordPress
In reply to: Display certain categories on the homepageKeesie, could I ask you for one more favour?
Forum: Themes and Templates
In reply to: TwentyEleven FooterJust used the footer areas to get a bit of text in.
Forum: Themes and Templates
In reply to: TwentyEleven MenuI don’t have time to learn how to work it. Just need a quick solution.
Forum: Themes and Templates
In reply to: TwentyEleven FooterI don’t have time to learn how to work it. Just need a quick solution.
Forum: Themes and Templates
In reply to: TwentyEleven FooterI’m not sure if I edited this, but I just want to add a footer text.
Forum: Themes and Templates
In reply to: TwentyEleven MenuI haven’t edited anything yet. I would just like to center all my menu items.
Forum: Themes and Templates
In reply to: Css different amongst browsersFound it. In the stylesheet it has some -moz- references and had different color schemes for newer browsers, deleted them so only my preferred color works. For the fonts I changed to fonts from Segoe UI to Tahoma and looks better.