Forum Replies Created

Viewing 15 replies - 481 through 495 (of 3,465 total)
  • Hi I don’t clearly understand your last question. I hope you don’t mind posting that as a new thread (with more details on it) via theme’s sub-forum at this link
    https://wordpress.org/support/theme/lovecraft#postform

    This is so that we can keep one question per support post.

    I’m glad it worked out 🙂

    Do you mean you want the sidebar as blog page? If that’s so, just assign default page template to that page, right now it’s using full width page template so there is no sidebar.

    If what you are looking for is making page with full width page template to be really span full width, use this code in Custom CSS

    .page-template-template-fullwidth #site-content .col-md-8.col-md-offset-2 {
    	margin-left: 0px;
    	padding: 0px 5%;
    	width: 100%;
    }

    You might want to change the 5% on side paddings to zero if wanted.

    Your code doesn’t work in small screen because they are put into a media query, remove that code outside the media query and put it on its own will fix the problem.

    Also maybe we can consider using this code instead on the footer credit part. This code use display none on the site info div and add in our own text to its outer container.

    /* remove site credit */
    .site-info { display: none; }
    
    /* add our own footer credit */
    .site-footer::after { content: "Website door Wesley Delpeut - Copyright © 2016 Topgeruimd"; display: block; }

    Or use this code, it’s the same as above but with adjustment for small screen.

    /* remove site credit */
    .site-info { display: none; }
    
    /* add our own footer credit */
    .site-footer::before { content: "Website door Wesley Delpeut"; display: inline-block; }
    .site-footer::after { content: " - Copyright © 2016 Topgeruimd"; display: inline-block; }
    
    /* adjust for small screen */
    @media (max-width: 640px) {
    	.site-footer::before { display: block; margin-bottom: 5px; font-size: 120%; }
    	.site-footer::after { content: "Copyright © 2016 Topgeruimd"; font-size: 90%; }
    }

    It’s worth noting that there is one big issue on the Custom CSS is implemented on the site right now. It seems to me that it contains a modified copy version of whole main theme style.css, if this is true it should get fixed, because doing it this way is hard to debug/manage and hard to keep it update with theme.

    The Custom CSS should only contains changes that we want to override.

    The info on usage is here
    https://wordpress.org/plugins/clean-login/installation/

    Basically we just need to put in the plugin’s shortcode in the post/page content that we want the form to appear.

    If you have further question on how to use this plugin please consider posting the question directly inside plugin’s own sub forum via this link
    https://wordpress.org/support/plugin/clean-login#postform

    You’re “Welcome”!

    You got the best name in the world 🙂

    Forum: Themes and Templates
    In reply to: CSS Help!

    Just change your selector (with CSS code wrapped in media query) from this

    img[src*="joshpic1New-300x416.jpg"]

    to this

    img[src*="joshpic1New"]

    The reason your code works for one site but not the other is that new version of WP has this responsive image thing going on and it reads available image sizes from image sizes set by theme/custom function/plugin, and one of your site happens to have more image sizes than the other (view source of that page and compare 2 sites).

    Changing the selector as shown above should fix the problem (if your code really did work for one site but not the other) because it target all image that has “joshpic1New” in file name so it hits all image sizes produced by WP.

    It sounds like the home(posts listing page) is cached probably server side caching or browser cache so it still shows, but when clicked on it to single post page it returned 404. So try deleting browser cache and reload the page. Also see if there is server side caching at work here.

    Hello World post is a default sample post automatically created by new WordPress install. We can remove/edit that post just like any other regular post. In your WP admin, go to Posts > All Posts and look for Hello World post name.

    We can use this code to achieve that

    #main .widget-area ul { text-align: center; }
    #main ul#pretty-pinterest-pins-widget li.pretty-pinterest-pin div.pretty-pinterest-image { margin-left: auto; margin-right: auto; }

    The second line of code shouldn’t be necessary long but since the pinterest plugin use this selector so we have to use the same to be able to override it.

    Use the code in Jetpack’s Custom CSS module (or via any standalone Custom CSS plugin).

    We can achieve that using only CSS.

    First put in the other logo via CSS content (empty content, fix width/height same as logo dimension, use logo as background image, targeting the pseudo after/or before).

    and then use WP’s body_class to display block/none alternatively
    https://codex.wordpress.org/Function_Reference/body_class

    Suppose your other 2 logo images are 150px by 70px.

    This code will do just that but I wrap it in media query for screen wider than 980px, if you want them also appear in smaller screen please adjust the code as you like.

    @media (min-width: 960px) {
    
    	.header-image { position: relative; }
    	.header-image a[rel="home"]::before,
    	.header-image a[rel="home"]::after {
    		background-image: url("http://dummyimage.com/150x70/000/fff.png");
    		content: ""; display: block;
    		width: 150px; height: 70px;
    		position: absolute;
    		left: 0; top: 0;
    	}
    
    	.header-image a[rel="home"]::after {
    		background-image: url("http://dummyimage.com/150x70/ffff00/000000.png");
    		left: auto; right: 0;
    	}
    
    }

    Do not forget to replace both of the image URLs to your own. Upload the logo into your site first and get the URLs to use.

    Yes it’s possible but with only regular default post format, not with aside post format.

    Please try go over your aside post format, and make it default post format, and then visit your category page. Now you will see it the same as demo’s one.

    Basically you want your aside post format to display like normal/regular/default post format in archive (post listing) page. Since this theme doesn’t do anything to aside post format other than display it differently in archive page, so the solution in this case is to not use aside post format.

    Please do this in order

    1. Activate Twenty Sixteen theme (or other WP default theme)
    2. Delete Fukasawa theme
    3. Delete Fukusawa Child theme
    4. Install and activate Fukasawa theme
    5. Install and activate Fukusawa Child theme

    The reason of doing this is because I think your parent theme is still corrupted (there is a folder name css in theme stylesheet part which is not what original theme does), updating theme only replaces file that’d beed changed based on version number, so we need to just delete it and re-install fresh.

    If done right, on the step 4, we should see the site display normally in Fukusawa theme, this is to make sure that the install is good.

    And then we try on our child theme (with function as shown in my first post) in step5.

    Hi

    The word “WELCOME” should not be part of site title, we can put it in via CSS content. Also we don’t need to put in capitalized text, just use normal text and use CSS to make it all uppercase.

    This code below will do just that (please remove the welcome text and un-cap the site title first), and also assign hover color.

    body #masthead h1.site-title a {
    	text-transform: uppercase;
    }
    body #masthead h1.site-title a::after {
    	content: " Welcome";
    }
    body #masthead h1.site-title a:hover {
    	color: #ff0000; /* color on hover */
    }

    This code below will scale the site title text responsively (or adaptively).

    @media (max-width: 1200px) {
    	body #masthead h1.site-title { font-size: 36px; line-height: 1.5; margin: 0px; }
    }
    
    @media (max-width: 960px) {
    	body #masthead h1.site-title { font-size: 30px; letter-spacing: 5px; }
    	.site-branding { margin: 30px 0px; }
    }
    
    @media (max-width: 600px) {
    	body #masthead h1.site-title { font-size: 24px; letter-spacing: 2.5px; }
    }
    
    @media (max-width: 480px) {
    	body #masthead h1.site-title { font-size: 18px; letter-spacing: 1px; }
    }
Viewing 15 replies - 481 through 495 (of 3,465 total)