Forum Replies Created

Viewing 15 replies - 121 through 135 (of 212 total)
  • My guess is your variables are not correct.

    network name = SITE_NAME
    site URL = BLOG_URL
    Username = USERNAME
    Password = PASSWORD

    I hope this helps, GL!

    In a single installation you could use different templates to create a different look for each product. This makes it easier to mix content. F.ex. you could make one slider and publish it on all sites, while in a multisite you would need to make the same slider on every site.

    Multisite is used to create separate websites. It could be right for you though. If you f.ex. publish your updates in the blog (posts), you can use the feed to copy content from one site to the other. There probably are plugins available for this, but Feedburner’s Buzzboost makes this easy too.

    To use media from different sites in a multisite you could use the network shared media plugin, but it won’t work for featured images (and probably not for slides either).

    So, basically, I would suggest to check whether you find the right tools to achieve your goal. Perhaps try it out on a test site and see if it all works as you expect. – my2ct.

    GL!

    I’m not sure about the warning, but if you have access via FTP, you can try to delete the .maintenance file.

    Good choice… no unnecessary load, adds more visibility to your logo & draws the attention to your content. Less is more. 🙂

    I’m glad you are happy, but it’s not good now…

    • Your image is way too large.
    • PNG is only good for illustration, too heavy for photos. This will slow your site (= poor user experience, bad for SEO, terrible on mobiles) and give errors.
    • On wide screens there is white space left and right of the image, on small screens there is space below the image. Make your browser window smaller (more narrow) to see what I mean, or see it @ mobiletest.me.

    I think the best thing to do is to upload the logo and the image on the background seperately and to add the image as background. You can do so via CSS. I’ll try to guide stepwise, but I would need to try it myself to be sure…

    1. Save your logo without background as PNG
    — It’s probably a good idea to add the semi-transparent white rectangle to it too, so it will be positioned correctly.

    2. Save your image as JPG with width: 1920px
    — if the original image is higher than the one you have now, it might be good to make it a bit higher than it is now.

    3. Upload your logo as you did.

    4. Upload the background image in your media.

    5. Change your .site-header in your custom CSS as followed, where ‘your-header-image.jpg’ is the image you want on the background.

    .site-header {
    height: 350px;
    background: url(/wp-content/uploads/2015/01/your-header-image.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    }

    I think this will do the trick, but I’ll be back to see the result.

    You’re right, Jess… I only looked quickly (a nice theme it is) and didn’t see the option yet to add a logo.

    I would suggest to install a plugin like Simple Custom CSS, or the one included in JetPack to add custom CSS to your site.

    Once activated you should see a text field, as illustrated in the screenshot here, in which you can add f.ex. the following:

    .site-header {
    height: 130px;
    }
    .home-link > img {
    max-height: 120px;
    }

    .site-header increases the available height.
    .home-link > img increases the image size.

    In case nothing would change, you can add ‘ !important’ after the px, f.ex.

    .site-header {
    height: 130px !important;
    }

    Do note that the above is not the exact size of your logo, because it is not very sharp at height 150px. I would recommend to replace it with a .png instead. Currently it is a .jpg, which is good for photos, but not for illustrations.

    I hope this helps!

    Hi Sally, since you already have a search field in the sidebar, you could reposition it with CSS.

    One way to do it is installing a plugin like Simple Custom CSS, or the one included in JetPack to add custom CSS to your site.

    Then add the following CSS:

    #search-2 {
    position: absolute;
    top: 229px;
    width: 250px;
    margin-left: 35px;
    }

    Obviously you can make the search field wider (width), or smaller and move it a little more or a little less to the left or right (margin-left). I hope this is more or less what you have in mind.

    While you are at it, you could also add some style to it, to make it fit a little better with your header, f.ex. this would add a little green as in your logo and make the corners rounded.

    input.inputblur {
    border-top-color: #8ec63f;
    border-left-color: #8ec63f;
    border-radius: 5px;
    }

    GL with it!

    I could be wrong, but I don’t think there is a header image in the theme. And it’s hard to think what you have in mind. Is it the background image perhaps that you would like to change? Could you be a little more specific? Sharing your site’s address might be helpful too (especially in case there is a header image).

    You’re welcome. But it’s better to not make changes directly to the theme, because these will get lost when you update.

    As an alternative to creating a child theme (or finding the stylesheet), you can also install a plugin like Simple Custom CSS, or the one included in JetPack to add custom CSS to your site.

    It depends on what you have in mind… If you just want to remove the black strip you can create a child theme, then add this to the stylesheet (style.css):

    .post-format-content {
    background: none;
    }

    Do note that there is no image below the strip. It’s my guess you will want to change the thumbnail size also. You probably can do so in media settings (/wp-admin/options-media.php), but you may need to regenerate the thumbs. For that you can use a plugin like Force Regenerate Thumbnails.

    GL!

    Oh no – before I get banned again – I forgot one thing: create a child theme first http://codex.wordpress.org/Child_Themes

    In your stylesheet, style.css, change:

    .square, ul#dropdown {
    margin-left: 0px;
    margin-right: 0px;
    }

    to:

    .square, ul#dropdown {
    margin-left: 0px;
    margin-right: 0px;
    padding: 0;
    }

    chrz!

    For me CloudFlare was a solution on WP 4.0.1 MU. It was a bit of a quest, so it’s hard to recapitulate exactly, but my best guess is the following:

    1. Add site to CloudFlare
    2. Install the CloudFlare WordPress Plugin.
    3. Install the WordPress HTTPS (SSL) plugin
    4. Install CloudFlare Flexible SSL plugin
    5. If you want to force SSL on your entire site you then can add the page rule ‘*yourdomain.tld/*’ to the settings of your domain in CloudFlare.

    For more info, check the plugin pages (install/FAQ) and this tutorial.

    Add a link to the shortcode, just like a regular link.

    [carousel]
    <a title="your title" href="your URL">[item img_link="/your-image.png"]</a>
    [/carousel]

    So, you are saying only standard opinion is good opinion?
    And the rest is not allowed?

    Here is a good read:
    http://www.un.org/en/documents/udhr/#atop

    Article 19.

    Everyone has the right to freedom of opinion and expression; this right includes freedom to hold opinions without interference and to seek, receive and impart information and ideas through any media and regardless of frontiers.

    Article 29.

    (1) Everyone has duties to the community in which alone the free and full development of his personality is possible.

Viewing 15 replies - 121 through 135 (of 212 total)