mark l chaves
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Can I install new WordPress on my laptop?Hi @sanambaloch,
You can install WordPress on your laptop to do local development. Here are a couple of options.
1. My fave is Local by Flywheel. It supports Windows and Mac. It’s super easy to use. https://localwp.com/
These two are more complicated.
2. XAMPP supports Windows, Mac, and Linux. https://make.wordpress.org/core/handbook/tutorials/installing-a-local-server/xampp/
3. MAMP supports Mac. https://codex.wordpress.org/Installing_WordPress_Locally_on_Your_Mac_With_MAMP
Again, these are for creating a local WordPress development environment on your computer. Not for hosting for the web.
Good luck!
mark
- This reply was modified 5 years, 9 months ago by mark l chaves. Reason: Clarification: local dev only not hosting
Forum: Accessibility
In reply to: How do I add in a section splitterHi @cameronrjohnson,
The example site you shared is also using DIVI. The side navigation indicators are coming from a DIVI element probably called Side Nav.
Since DIVI is a premium theme and not supported by WordPress.org, I recommend you look at the DIVI docs or request help from the Elegant Theme’s support team 🙂
Good luck!
Forum: Fixing WordPress
In reply to: Empty space in widget columnHave you reached out to the theme’s author?
https://restored316designs.com/
This looks like a premium theme. The vendor should provide support, and WordPress.org isn’t meant to support paid themes for obvious reasons.
If you need a quick fix, please try this CSS.
#front-page-2 .wrap { display: flex; flex-wrap: wrap; }Good luck!
Forum: Fixing WordPress
In reply to: How to change position of logo based on a preset themeOK. Then, the CSS I gave you should help.
To override a CSS rule that you don’t have access to or you don’t want to change the original source you can:
1. Add the
!importantdeclaration. E.g.,.some-class { display: flex !important; }or,
2. Manipulate with JavaScript. E.g.,
let elt = document.querySelector(".some-class"); elt.setAttribute("style", "display: grid; place-items: center;");Forum: Fixing WordPress
In reply to: How to change position of logo based on a preset themeBTW, it looks like you are using a premium theme?
https://themeforest.net/item/hcode-responsive-multipurpose-wordpress-theme/14561695
You should use their support processes. The theme providers are the best people to answer your question. And, WordPress.org is not equipped to support premium (paid) themes.
I hope that makes sense 😉
Good luck!
Forum: Fixing WordPress
In reply to: How to change position of logo based on a preset themeHi @itsdesign0518 ,
It looks like you solved your spacer issue. Congrats. I replied a few days ago after I was able to see your site. But, I think my reply was deleted for some reason.
Anyway. Can you be more specific on what position you want to change your logo to?
Have you already consulted your theme’s documentation/author/forum? I’m sure you aren’t the first person to ask this question for your theme?
Or, if you know CSS, you can play with the logo’s margins/paddings. And, since it’s wrapped in a flexbox, you can learn how to position the logo using flexbox position rules.
Here’s a quick example of moving your logo to the left a “little” bit.
.hcode-header-logo.header-logo { margin-left: 10rem; }Forum: Fixing WordPress
In reply to: Applying my new footerCan you make sure you clear all your browser and server caches if you haven’t? After your caches are cleared, use a private/incognito mode browser window to view your site.
If the footer still doesn’t show up, check your child or parent theme’s functions.php file to see if the code is in there.
Alternatively, you can do a find or grep on your web directories for the string “Love Privacy” for example.
Good luck!
Forum: Fixing WordPress
In reply to: Remove line under titlesHi @moretus ,
.entry-header .entry-meta::after, #secondary .widget-title::after { display: none; }I recommend that you learn more about your theme so you can make these changes yourself and not depend on the WordPress.org community forum every time you need a small theme tweak.
Ideally, you should also learn HTML and CSS and how to modify HTML/CSS in WordPress if you are building/maintaining a WordPress website.
Please submit all future theme-related questions such as this one to your theme’s author or support forum.
Thanks!
Forum: Fixing WordPress
In reply to: Change WordPress logo on post editorHello @hcmendez ,
In your child theme’s functions.php, please make sure you remove this line.
?>It’s right after you load your first
add_action()function call.add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' ); ?>It should work after that unless there’s another error. If it still doesn’t work, you’ll need to make sure your admin child style sheet is being loaded (inspect your source code) and use your dev tools to inspect the CSS where the logo should be.
Good luck!
Forum: Fixing WordPress
In reply to: Image is Pixelated in WordPressHi @ryan19911 ,
The map image on your contacts page is different from the map image on the locally-owned page.
Contacts map image: service-92.jpg (782x510px)
Locally Owned map image: handyman-experinced11.jpg (338x224px)
The locally-owned image is about a half-resolution size smaller than the contacts one. And, this smaller version is going into a 670x440px container. Hence the pixelation.
Maybe you can use the service-92.jpg for the Locally Owned map too?
Thanks!
Forum: Fixing WordPress
In reply to: Remove line under titlesHi @moretus ,
I don’t see a thin blue line in the Nisarg demo site. Anyway, you can play around with any of these CSS rules to see if one of them works for you. If not, please contact the theme’s author.
/* Remove the short accent separator under the site title. */ .site-title::after { display: none; /* Use !important; if needed. */ } /* Remove any underline from the site title if any. */ .site-title { text-decoration: none; /* Use !important; if needed. */ border-bottom: none; /* Use !important; if needed. */ }Good luck!
Forum: Fixing WordPress
In reply to: Customising page padding in woocommerce cart, checkout pagesI would check with your theme’s author/support or Elementor’s support.
In the meantime, you can try this CSS, which worked for me.
@media screen and (max-width: 767.998px) { .coupon .button { width: 100% !important; } #coupon_code { width: 100% !important; margin-bottom: 1rem; } }Forum: Fixing WordPress
In reply to: Unable to Update website logoHi @winston2 ,
Have you tried renaming your logo.png file to something like logo-2.png or new-logo.png? Then, uploading the renamed file using Appearance > Customize?
If that doesn’t work, you’ll need to contact the theme’s author/support. The Appai theme is a premium theme. Premium themes can’t be supported by WordPress.org.
Good luck!
Forum: Fixing WordPress
In reply to: Remove line under titlesHi @moretus,
I’d have to see your code to give you the exact CSS. In general, you can try something like
.my-titles { text-decoration: none; /* Add !important as needed. */ }Please change
.my-titlesto the CSS selector specific to your case.Good luck!
P.S. Your page link obviously doesn’t work here since it’s pointing to your local host.