Help with responsive theme styling issue

Because some of titles are running on to three lines when the screen gets smaller its messing up the flow of the floated elements. What you need to do is clear every fourth element. Also this is a basic css question and is not specific to WordPress at all.

wordpress not saving form code in code editor

Embedding PayPal code into the text editor is always a little risky due to the layout of html elements ‘PayPal style’ vs the layout of html elements ‘WordPress content style’… both are trying to ‘think’ for you a little bit to make your life easier, but as a result the formatting can go whacky. As … Read more

Add woocommerce plugin in own theme

You can copy the templates folder inside the Woocommerce plug-in folder and place them in a custom Woocommerce folder inside your theme folder. every changes you make inside the custom Woocommerce folder will override the core files of the Woocommerce plug-in without loosing them after an update. You have to give us more information aboutdisplaying … Read more

Parallax image problem

Doesn’t sound like you’re doing anything wrong but can’t really assist without more information. I’m thinking it’s either a theme, plugin, or server issue. First try disabling the cherry lazy load / parallax plugins to see if it is coming from there. Then try changing your theme to see if you have the same problem … Read more

Why the images on mi javascript are not found?

You are missing /wp-content/themes/YOUR_theme_NAME_FOLDER like this: function sliderimgchange(){ if ($(window).width() <= 600) { var sliderOne = $(‘.slideuno’).attr(‘src’, ‘/wp-content/themes/YOUR_theme_NAME_FOLDER/images/sliderone-mobile.jpg’), sliderTwo = $(‘.slidedos’).attr(‘src’, ‘/wp-content/themes/YOUR_theme_NAME_FOLDER/images/slidertwo-mobile.jpg’), sliderThree = $(‘.slidetres’).attr(‘src’, ‘/wp-content/themes/YOUR_theme_NAME_FOLDER/images/sliderthree-mobile.jpg’); } else if ($(window).width() > 600) { var sliderOne = $(‘.slideuno’).attr(‘src’, ‘/wp-content/themes/YOUR_theme_NAME_FOLDER/images/sliderone.jpg’), sliderTwo = $(‘.slidedos’).attr(‘src’, ‘/wp-content/themes/YOUR_theme_NAME_FOLDER/images/slidertwo.jpg’), sliderThree = $(‘.slidetres’).attr(‘src’, ‘/wp-content/themes/YOUR_theme_NAME_FOLDER/images/sliderthree.jpg’); } }

Post title appears twice in browser title bar

check Two title tags in my header there is already add_theme_support( ‘title-tag’ ); in functions.php file. the wp_title() tag in the header is automatically added.copy your parent theme header.php to your child theme and delete the wp_title() tag in the header.php

WP_Query not returning results

if you print_r($houseQuery), what is your request query? It’s a correct SQL query? When you print WP_Query object you can find this in structure: [request] => SELECT SQL_CALC_FOUND_ROWS[…] You need to analyze this to understand what’s going on. Let me know.

how can i change the html and the css of my word press theme that I bought?

First of all, it depends on what theme you have. Many premium themes provide an option for users to enter their custom CSS. It that is the case you can add your styles there. If not, follow the link to create a child theme – http://www.wpbeginner.com/wp-themes/how-to-create-a-wordpress-child-theme-video/ You can add your custom style in child theme’s … Read more