Changing navigation strip color with CSS
In file named style.css on line 1235 .mobile-navbar { height: 44px; background-color: red; } and on line 3824 .header-bottom { position: relative; height: 50px; background-color: red; }
In file named style.css on line 1235 .mobile-navbar { height: 44px; background-color: red; } and on line 3824 .header-bottom { position: relative; height: 50px; background-color: red; }
The biggest issue you’re running into is putting the_custom_logo() inside of an <img> tag. The function already outputs a full image tag, plus a link to the homepage wrapped around it. So, replace this <a class=”navbar-brand” href=”#” > <img src=”<?php the_custom_logo(); ?>” height=”42″ width=”42″> </a> with this <?php the_custom_logo(); ?> to get rid of the … Read more
You need to add your css to wp_head. In order to do so, you need to get your dynamic CSS first, load in into a variable and then add that variable to the head output. Just like so: (This code can go into your functions.php, plugin file or somewhere else in your theme, make sure … Read more
If you inspect the text, you’ll see that your theme’s CSS is overriding your custom CSS. You have h2 { color: white; } but your theme has .widget h2 { color: inherit; } so “inherit” wins out. If you change your own CSS to .widget h2 { color: white; } it will override the theme. … Read more
My coding skills are very minimal, and I can’t seem to find & edit the HTML. This is because video embeds are usually implemented using a shortcode, there is no HTML to edit, it’s generated on the fly Starting playing automatically WITHOUT the user having to click any sort of play button. yes and no… … Read more
Do your URL change up in phpMyAdmin with SQL language: # Change website url UPDATE wp_options SET option_value = replace(option_value, ‘http://www.old-site.com’,’http://www.new-site.com’) WHERE option_name=”home” OR option_name=”siteurl”; # Change GUID URL UPDATE wp_posts SET guid = REPLACE (guid, ‘http://www.old-site.com’,’http://www.new-site.com’); # Change url of medias, post, page, etc. UPDATE wp_posts SET post_content = REPLACE (post_content, ‘http://www.old-site.com’,’http://www.new-site.com’); # Change … Read more
if not remove by code and other setting then try to hide it by using the css, Use body class so it will not affect on other single pages .single-portfolio .author, .single-portfolio .cat-links{display:none} or .single-portfolio-item .author, .single-portfolio-item .cat-links{display:none}
Your theme might already have an animation feature, you can just add the class. You can add a plugin like so..https://wordpress.org/plugins/animate-it/ and add the class to the featured image property for it to work. If you use a builder (like Elementor) you can easily create your layouts and add animations to each element.
There are some wp-admin styles you need to load. Since I cannot find any way to let wp_enqueue_style() accept url parameters, so I load styles by wp_head hook function here. add_action( ‘wp_head’, ‘load_admin_media_styles’, 10); function load_admin_media_styles(){ // list all style libs the post page of wp-admin loaded, but we may only need to load 2 … Read more
so if you want to remove/hide only the button can do this: 1 – if you have a specific class that hide a element //$class = “youre class”; <button class=”<?php if(is_page($page_id)){ echo $class } ?>” onclick=”window.location.href=”https://example.org/about/”;”>About Me</button> 2 – inline style <button <?php if(is_page($page_id)){ echo “style=”display: none”; } ?>” onclick=”window.location.href=”https://example.org/about/”;”>About Me</button>