Forum Replies Created

Viewing 15 replies - 16 through 30 (of 37 total)
  • Ok, let’s try something. Back your stuff up before doing this so that in case it doesn’t work you can go back to the original set up and we can try something else.

    First, change the post() in the code that you posted in the paste bin to post-main.

    Next, use this as your style.css file. I have replaced all the parts in the style.css you are using that have the post class to have the post-main class.
    https://wordpress.pastebin.com/VEeUj4X3

    The reasoning for this is that I believe that the problem is being caused by the fact that the class is called post() instead of post, like it references in your stylesheet. The other thing to try is to change the lines that reference the post class in your stylesheet to reference post().

    Let me know how that goes.

    In style.css you’ll want to change:

    .post-info {
    margin: 0px;
    }

    to:

    .post-info {
    margin: 0px;
    padding: 0px 40px;
    }

    That will change the information under the post title to move over. It also looks like somewhere something got messed up with the div class of post. It is showing that class to be ‘post()’ instead of ‘post’ and so the h2 styles that are meant for that part aren’t loading properly. Once that is fixed, you can apply the proper padding to the h2 .post{ } css.

    Feel free to ask again if you have questions.

    To do that you will have to edit the single.php file to remove the part of the code where the featured image is showing up.

    If you can post a link to your site we will be able to help you better.

    Yup. The implementation section in the codex page that alchymyth has linked to has a very good example that should explain how to do it. If you need more help, feel free to ask and we can help you out further!

    You might try manually installing the theme or plugin. This can be done by using an FTP client such as Filezilla and entering the FTP information provided by the hosting company. Then, upload the theme file to the ‘Themes’ folder. The path from the WordPress root should be:
    wp-content -> themes
    or
    wp-content -> plugins

    After that, you should be able to activate from the WordPress admin screen.

    Forum: Themes and Templates
    In reply to: Theme Search

    There are many sites online that offer WordPress themes. A couple of the more popular sites are themeforest.com and woothemes.com.

    You can head over there and browse their themes. They have live demos so you that you can get a feel for the themes before you purchase or download. Good luck!

    It looks like you have been playing with the php some and have inserted the banner in the wrong location. You will want it to go inside the following tags:

    <div id="branding" role="banner">
    <span></span>
    <div id="site-description">Just another WordPress site</div>
    <img src="" width="940" height="198" alt="">								</div>

    You might need to play around with it a little to get it right but that should help. Also, you will probably want to delete this:
    margin-top: 40px;

    from this part of your CSS:

    #wrapper {
    background: transparent;
    margin-top: 40px;
    padding: 0px 20px;
    }

    I would go to the forums here:
    https://colorlabsproject.com/forum/

    For a premium theme like that, you are most likely going to find better support from the developers of that individual theme.

    I think that phenomenoodle’s suggestion for changing the margin looks good, but like he said it will affect all images that have a caption. So, your current setup looks like this:

    .wp-caption {
    background-color: #F3F3F3;
    border: 1px solid #DDD;
    margin: 10px;
    padding: 0px;
    text-align: center;
    }

    and you should change it to this:

    .wp-caption {
    background-color: #F3F3F3;
    border: 1px solid #DDD;
    margin: 0px 10px 10px;
    padding: 0px;
    text-align: center;
    }

    I have never used this theme, but I went ahead and downloaded it and it seems that there is an extra > in the line between the head and body tags that could be causing a problem. I updated the header and have pasted it in the pastebin here:
    https://wordpress.pastebin.com/d7xwagp7

    The lines that are changed have been highlighted. If that doesn’t fix it, then you would probably be better off heading to the Atahualpa support forum at https://forum.bytesforall.com/ as suggested by esmi

    Your header.php file can be found in the WordPress admin page. Click on the “Appearance” tab in the left sidebar and then click on the “Editor” link. Then, from the editor page, click on the “header.php” in the right sidebar.

    My guess is that somewhere in your header.php file you have some bad code. I can’t be certain without being able to see the actual code, but since this html code is showing up on both pages and on posts that is what leads me to believe that.

    If you want to post the code from your header.php file I can look at it and try and help you. Or, you can contact me at mitchellbwright (at) gmail (dot) com

    Yes. I’m sorry. my. FROG put it much more eloquently than I did.

    If you change this part of the style.css it will change the background. However, be advised that there are some graphics that you would have to change the color of as well, along with the color of the navigation bar. It also messes with the gradient.

    With that said, the code you would change to change the background is as follows:
    Change this

    body {
    background: #8F5E5D repeat-x 0px 0px;
    color: #424242;
    font: normal normal normal 12px/18px 'Lucida Grande', 'Lucida Sans Unicode', Arial, Verdana, sans-serif;
    }

    To this

    body {
    background: #456 repeat-x 0px 0px;
    color: #424242;
    font: normal normal normal 12px/18px 'Lucida Grande', 'Lucida Sans Unicode', Arial, Verdana, sans-serif;
    }

Viewing 15 replies - 16 through 30 (of 37 total)