bjarnijo90
Forum Replies Created
-
I’m not sure how to decipher this. Can anyone help me with it?
Forum: Fixing WordPress
In reply to: Best way to manage a website?Okay and that’s the most efficient and generally used option?
Forum: Plugins
In reply to: [Fixed Widget] [Plugin: Huge IT slider not working with sticky widgets]Enabling Use jQuery(window).load() hook: in the options of sticky widget fixed this problem for me!
Forum: Fixing WordPress
In reply to: Bizarre problem with child themeTypical. I fixed it a second after posting this (I had been dealing with this all day) by using:
<?php function theme_enqueue_styles() { $parent_style = 'parent-style'; 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 ) ); } add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); ?>
Instead.
Forum: Fixing WordPress
In reply to: How to create a mason-like image width and height instead of fixed?I’m editing my own theme (child theme to another parent theme). I’ve actually solved the size problem but now I’m trying to increase the vertical space between the posts, as the second line of posts is clipping into the thumbnail of the row above. Any idea how I’d do that?
Forum: Fixing WordPress
In reply to: Problem working with wordpress in dreamweaverI don’t like it either. What’s the most common way of editing wordpress sites today?
Forum: Fixing WordPress
In reply to: Problem working with wordpress in dreamweaverAlso this tutorial is the biggest joke of them all. He doesn’t even specify a testing server, so it’s virtually impossible to edit anything his way.
Forum: Fixing WordPress
In reply to: Problem working with wordpress in dreamweaverYes I have read that. It doesn’t work and I don’t know how the authors that write these articles don’t know that.
When you import a website like this through wordpress into dreamweaver, the mysql databases and all the links are left behind. You can’t even connect to your local edition on the website.
If you export the database manually (as conveniently ignored by these articles) you get a functioning front page but the linking is still messed up.