Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1409167

    ourphn
    Participant

    Hi,

    My blog page looks really odd. http://www.ourphn.org.au/wordpress/news/

    1. How do I get rid of the large white space above the start of my news?
    2. How do I add a page heading to this page, it won’t let me edit it in cornerstone
    3. Why does the background colour of my page flow into the right sidebar, how can I make it white?
    4. Is there a way to make the featured image appear smaller when you click into a story, as right now it is massive http://www.ourphn.org.au/wordpress/alert-updated-zostavax-information/

    I will send through my page details privately.

    Thanks in advance for your help, it’s always wonderful!

    #1409168

    ourphn
    Participant
    This reply has been marked as private.
    #1409242

    Friech
    Moderator

    Hi There,

    Thank you for writing in! #1 That is actually an empty posts slider, to disable that navigate to Appearance > Customize > Ethos and turn off the Post Slider for Blog option.

    #2 Yes, that page is your blog index page. It will automatically populate with your posts. You can’t edit this page is Cornerstone because this page is using an special template. If you need to edit this you need to modify the template which fall outside of the support that we can offer.

    #3 Navigate to Appearance > Customize > Layout and Design and change the Background Color to white.

    #4 You can add this under Custom > CSS in the Customizer.

    @media (min-width: 768px) {
    	.single-post .x-main.left .hentry .entry-featured {
    		width: 50%;
    		margin-top: 0;
    	}
    }

    Hope it helps, Cheers!

    #1410313

    ourphn
    Participant

    Firstly, you guys are amazing. You’ve fixed all my problems, except now I have two new questions.

    1. When you go onto this page http://www.ourphn.org.au/wordpress/news/ is there any way to change ‘Filter by Topic’ to ‘View by region’.

    2. When you view posts by tag http://www.ourphn.org.au/wordpress/tag/alerts/ is there anyway to change ‘Tag archive’ to ‘Alerts’. Same question, but for the categories page http://www.ourphn.org.au/wordpress/category/central-queensland/

    3. Or if I can’t change that wording, is there anyway to remove the ‘tag archive’ and ‘category archive’ heading all together?

    Thanks!

    #1410812

    Friech
    Moderator

    Hi There,

    #1 Add this under Custom > Global JavaScript in the Customizer.

    jQuery(document).ready(function($){
    	jQuery('.x-index-filter-label').html('View by region');
    });

    #2 Navigate to Posts > Tags, edit the Alerts, fill the Archive Title, do this to other tags. Same thing with categories, under Posts > Categories.

    #3 If you want it to be remove, add this under Custom > Global CSS in the Customizer.

    .archive .x-header-landmark {display: none;}

    Cheers!

    #1421205

    ourphn
    Participant

    This worked. Thank you!

    #1421273

    Paul R
    Moderator

    You’re welcome! 🙂