Forum Replies Created

Viewing 15 replies - 46 through 60 (of 204 total)
  • Forum: Fixing WordPress
    In reply to: using images

    Instead of being across, it might have been that you added the images into the first column only. I’ve done that in the past since selecting the column can be finicky.

    I used my Glaciers WordPress theme to try this out. I added some screenshots (see below), but to insert an image into the next column, click in the area you think the next column is and then double-check the bottom of the editor window and see what the path shows…it should show the “column” is active.

    Here are the screenshots:

    The last one is the front-end view in mobile where they go vertical.

    To balance the logos on each line, I would recommend putting more white space on some of them. Make each logo image the same height and vertically align centered and middle. Such as this example:

    logos-front-end.png

    Forum: Fixing WordPress
    In reply to: using images

    Another option would be to use the columns block. In column then can have a logo. You can make another column block and repeat, or, place two logos in each column where the image block is below each other.

    That is generally the big question and as threadi mentioned, activate and test.

    Have you managed to discover which scripts and CSS work when combined?

    I use Lightspeed Cache on my Rough Pixels website, and that setting is usually quite risky–I’ve left it off while working with the configurations of other settings. The part that takes time is to test out the combining of CSS first. Enable that one and go through your website to see if anything looks odd. Do the same with the JS scripts. However, with the scripts, this requires you to test anything that your website has that uses scripts–then try them out. If everything seems to be functional, then you’re good to go.

    With your current configuration, how does your site perform with Google Insights (pagespeed) and GTMetrix?

    I haven’t played with the Twenty Twenty-Four extensively yet, but I did a quick test with this custom CSS override in the browser’s webmaster tools. This might work for you…

    .wp-block-navigation.items-justified-right .wp-block-navigation__container .has-child .wp-block-navigation__submenu-container {
    text-align: right;
    }

    It almost appears the .items-justified-right is not taking effect.

    Theme Author Rough Pixels

    (@roughpixels)

    Thank you and you are very welcome.
    I’m happy to hear things have worked out.

    Cheers,
    Andre

    Theme Author Rough Pixels

    (@roughpixels)

    Hi Liza,

    1. For the “Home icon” question, are you just wanting an icon or link name with an icon?
    2. You home link doesn’t need to be called “Home”. When you make your link for the menu, you retype the label field to what you want.

    Back to the icon though; there are a couple of options:

    1. Using a plugin: Something link this one Menu Image, Icons made easy – WordPress plugin | ww.wp.xz.cn
    2. Custom coding

    There are several tutorials online about adding icons (sometimes images) to a menu. This one from WPBeginner provides the options above. How to Add Image Icons With Navigation Menus in WordPress (wpbeginner.com)

    It could also be done using CSS code which can be added to the Additional CSS tab in the customizer. For example, I added a house icon to your “An Invitation” menu link using:

    li#menu-item-13395::before {
        content: '\F424';
        font-family: Bootstrap-icons;
        margin-right: 3px;
    }

    This theme already uses Bootstrap icons, so I was able to do this quickly.

    NOTE: The id# of: menu-item-13395 is the id of that particular menu link. This CSS code targets and adds the icon only to that item.

    Theme Author Rough Pixels

    (@roughpixels)

    I want to say a big thank you for the rating and review!

    Best Regards,
    Andre

    Theme Author Rough Pixels

    (@roughpixels)

    You are very welcome 🙂

    I will make this as a setting in the theme’s customizer on the next update (today or tomorrow).

    Theme Author Rough Pixels

    (@roughpixels)

    No link to the images necessary for this one 🙂

    Now, let’s dig into this… The side column becomes the header in mobile view. Both load the photo(s) as a background, which gives more flexibility for the layout (how it looks). Both views have a “height” applied to them. The side column has a 100% height of the browser window; the mobile view does not–this is where your image is partially hidden.

    The one possible solution is to give you something right now (unless you want to wait for the theme update–I will do this for tomorrow if not today)…

    In the Additional CSS tab of the customizer, copy and paste this code into it and see if this helps:

    .sidecolumn-inner {
        display: flex;
        height: 70vh;
    }

    If this works for you, I will more likely make this as a theme option in the customizer. This will give the person the choice of how much of the mobile header view is seen (the photo) by changing the height of the header.

    NOTE: The 70vh that you see there means the header (in mobile view) will be 70% of the browser window. You can change that to your preference.

    Best Regards,
    Andre

    Theme Author Rough Pixels

    (@roughpixels)

    Greetings! The side panel/sidebar column is ideal for what you have planned, but let’s get this solved for you.

    My guess is that when viewing in a mobile device, such as a phone or tablet, the full image is getting cut off–or rather too much is getting cut off. Is this the the issue?

    If so, I have an easy fix–plus a possible theme update to give the end-user the ability to adjust the image header height from the customizer.

    Best Regards,
    Andre

    Thread Starter Rough Pixels

    (@roughpixels)

    Greatly appreciated! Thank you.

    Rough Pixels

    (@roughpixels)

    Obviously an issue for many (or some). My momentary recommendation is to restore your website(s) with a backup prior to this; or, have your host do a rollback with their server backups (providing this is made available to you).

    I’m just now checking my Rough Pixels website, but so far, everything seems fine.

    Theme Author Rough Pixels

    (@roughpixels)

    OOO! This sounds like this is worth a 5-star review! 🙂

    Anyway, I’m glad things worked out for you and you are very welcome as well. Thanks for the theme comment too!

    Best Regards,
    Andre

    Theme Author Rough Pixels

    (@roughpixels)

    Good to hear the bio info worked.

    For the fonts, I’m not too familiar with the Google Fonts plugin, but it sounds like you want to change the font for most if not everything. But, once you choose the font that you want to use, the theme’s default font is applied to the body tag. For example:

    body {
      font-family: var(--fifty50-font-primary);
    }

    I won’t bore you with the nerdy stuff about what var(–fifty50-font-primary) is, but you can apply the font you choose to the body tag. We will use the font Arial as an example like this:

    body {
      font-family: Arial;
    }

    Adding that to the Additional CSS tab in the customizer should work, where this one will change the font for everything (or should). The only exception are page titles, headings, etc. This would be done with:

    h1, h2, h3, h4, h5, h6 {
      font-family: Arial;
    }

    Buttons: For Jetpack, I’m not sure what classes they use to apply their style to the buttons they use. So, this is something I’m not able to help too much on my end as that is a plugin I don’t use. You might want to post to their plugin support.

    Buttons for Fifty50 will depend on if you are using the classic or block editor. You can find the “button” styling in the theme’s style.css file around line 1974. It starts off with…

    /* Buttons */
    .button,
    button,
    input[type=button],
    input[type=reset],
    input[type=submit] {
      background-color: var(--fifty50-colour-tertiary);
      border: 1px solid transparent;
      border-radius: 0.563rem;

    Hopefully some of this helps.

    NOTE: I just uploaded an update to version 1.0.5, but need to make a slight correction to that one. Watch for a new update later today for version 1.0.6.

    Theme Author Rough Pixels

    (@roughpixels)

    Greetings!

    For the byline removal, that is just for the author (and link) in the post’s meta info; where the post date is, comments link, etc. I’m assuming you are wanting the author bio below the full post removed? Normally if your WordPress is set up for just one author, this should not show; This feature is also in the pro version of Fifty50 (among several others) from the Customizer. However, if this version is enough for you, feature-wise, you can add this code to the Additional CSS tab in the customizer:

    .entry-meta .byline,
    .author-info { display: none; }

    The entry-meta .byline will remove that author link just below the post title and the .author-info part will hide the full author bio from the full post view.

    For the fonts, how were you trying to change those?

    For the button(s), were you trying to change them for all buttons, or just an email subscribe button? Also, are you using a newsletter signup plugin?

Viewing 15 replies - 46 through 60 (of 204 total)