Forum Replies Created

Viewing 15 replies - 211 through 225 (of 3,465 total)
  • @wellnesscarousel Yes, I would do the same if the amount of content is not that much.

    Hi again, I’m sorry for not being clear enough. What I meant is that we don’t need to write extra CSS using @media only screen and (max-width: 767px) at all

    So we can just delete this from your code

    
    @media only screen and (max-width: 767px) {
       #tips, .boxfloat {
          width: 100%;
       }
    }
    

    And remove/delete the width:920px from .boxfloat and from #tips.

    Then assignmax-width:920px to .boxfloat.

    And that’s it. I tested it in chrome web dev tool, and it works.

    We don’t need to write the @media for this, just remove the width:920px from .boxfloat and from #tips. Use max-width instead.

    The blog page you linked to is the archive (post listing) page, not a single post page where comment thingy is usually going on.

    Right now you got only 1 blog post, so it might be hard to tell which page is an archive or single, try making a few more posts.

    There is something else too. On your blog’s archive (post listing) page, there is a CSS code in your child theme that display:none the post title, so what you see as the post title is not the real one but a line of text wrapped in H2 in the content area.

    Since the real post title is display:none, there is no clickable link that leads to the single post page. So we must remove the display:none from your child theme style. And when we did that the real title will lead to this page https://radicalurge.com/hello-world which is the single post page and there is commenting system going on there.

    I suppose you forgot or simply not aware that you need to change the permalink from hello-world to everything-is-connected as your real post title.

    I just started a new site, and I want to re-use some of my old articles and info from the previous site

    So we just need some articles from old site so we don’t really need to make a complete thing setup. I suggest just install a new (separated from your new site) WP using local machine, or do it on a subdomain of your live site would work too. And then just get your articles in a copy/paste fashion.

    The WP importer (xml) works only for text, as for the image it needs the original site to be online. So in this case it’s better to just import the sql file using phpmyadmin.

    Restore Process
    https://codex.wordpress.org/Restoring_Your_Database_From_Backup

    Depending on the amount of content that you need from old site. If it’s not that much, just opening up the sql file with text editor (just like you did) and get the text from article manually, and look for the images that belongs to each article inside the wp-content/upload/ folder.

    Forum: Fixing WordPress
    In reply to: Avatar is Too Big

    Use this in Additional CSS would fix the problem
    .comment_avatar { width: 80px; }

    but I’d rather try to figure out what makes theme’s CSS doing that in the first place and try to fix it there. Maybe it’s a bug, or maybe user made some changes and it messed up the good code.

    That is theme’s specific question. Please refer to your theme’s documentation.

    There is this part of CSS that makes the whole page invisible. Please note that it’s invisible on both big and small screen devices, so I guess the reason you only see the problem on mobile could be that the browser on your big screen device is showing the cached version.

    
    .secondline-themes-isotope-animation {
    	opacity: 0;
    	transition: opacity 500ms;
    }
    

    It’s loaded from this:
    https://www.criswellscc.com/wp-content/uploads/fvm/out/header-0faf6c6a-0.min.css

    I tried taking out the opacity: 0 (via web dev tool) and it fixed the problem, the blog showed up. So just find out what part of the theme or plugin injects that line of CSS and then remove/change it.

    As for the domains, the 000webhost is there because I haven’t connected my domain yet. I wanted to get the site actually built first.

    That’s good. A web dev would do the same thing with local host, so you are doing the right thing there.

    Speaking of categories, if I have the 3, will all my posts still show up in a single long stream?

    If what you refer to as “single long stream” is a post listing page (or archive page or blog page), this is totally configurable. You might want to set a static front page (using a page and set it as web front home page) and then make a link to each category archive page so that users can select to see all posts in each category separately.

    And on the menu, should I set the categories or pages on it?

    It’s up to you. In this case just make a link to each category archive page (all posts listing page in that particular category) separately, so we have 3 category archive links for users to select to go to. On the menu also make a link to your About page, and to Contact page.

    Hi, you don’t need 3 blogs on 1 site, you just need 1 site with 3 categories. This is how it usually is. All your 3 subjects are totally ok to be in 1 site. Learn how to use category and sub-category in WordPress, it’s easy and it goes a long way.

    Problem on your first site is it’s using frameset pulling content from your blog hosted over at WP.com, this is not a good practice. It’s better to use your own domain at WP.com the right way, if you don’t want to pay for the upgrade then the subdomain with wordpress.com is totally fine.

    IMO, the domain example.wordpress.com is better than example.000webhostapp.com in many aspects.

    The Bridge theme from Theme Forest? If that so, please contact its support channel directly. This forum is not for supporting commercial theme. Also this question is impossible for any of us to answer, it’s best to ask directly to the people who know it the most.

    Hi again, I’m sorry I missed the part where you said you already deleted from trash.

    After manually clicked Delete Permanently from trash, it should get deleted right away, that post must be gone from database. If the post still there, it means something else is in conflict. I suggest disabling all plugins and try deleting that post and see what’d happen. The first suspect is the podcast plugin, or some kind of sitemap plugin.

    When we delete posts, they get Trash Status for certain period of time, or we can manually do it by clicking Delete Permanently. The old deleted post in trash still reserves its post slug, that’s why WP appends -2, -3, -4 to same slug that comes after.

    This page has easy to understand screenshots
    http://www.wpbeginner.com/glossary/trash/

    First problem

    The images will be aligned correctly when I hit F12 (for web dev inspection), or zoom in/out, or F11 (for full screen browser viewing). There is also the inline CSS for width injected in the code. All of these point to one conclusion, there is some JS conflict.

    Try disabling all plugins, see if problem goes away. If it does, re-enable them one by one to rule out the culprit.

    Second Problem

    The image is bigger than the container because there is this inline style 1010px width
    <div id="attachment_40626" style="width: 1010px" class="wp-caption aligncenter">

    Depending on how many of them like this that you have, if you got only few posts like this just go over them one by one and manually remove the style="width: 1010px" part.

    If there are too many posts with this problem, just put this one line of CSS in Additional CSS section.

    
    .wp-caption { max-width: 100%; }
    

    Images in your front page slider look pretty good on my end. I compare them in FF and Chrome and they are the same quality.

    Have you tried clearing browser cache (delete history) in your Chrome? I have a feeling it’s one of those caching issue.

Viewing 15 replies - 211 through 225 (of 3,465 total)