• Hi guys!

    I have a few questions. I figured it would make more sense to group them all together.

    1. Blog title – how do I center it? Right now it’s adjusted to the left.
    https://www.zuzannarudas.com/casa-vicens/

    2. How do I change the colour of the blue line under “SEARCH THE BLOG” in the right sidebar? I guess I will need some code – can you provide me with the correct CSS?
    https://www.zuzannarudas.com/barcelona-photography-blog

    3. How to modify “Continue Reading”?
    EDIT: I found and followed the instructons about the child theme and now “Continue Reading” says “Read more” (yaaay!). HOWEVER, is there a way to move it a bit higher? There’s a big gap between the meta info and Read more. Also, how do I make it NOT underlined?

    Thanks!

    • This topic was modified 6 years, 1 month ago by Zuzanna.
Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello,

    1. Go to customize > general options > page title and select style centered. To change it for a specific post/page, you need to do it using OceanWP settings metabox.

    2. Go to customize > sidebar and find Titles Border Color and change the color or try to add the code in the customize > custom css/js section.

    .widget-title:after {
        background-color: #c11f7b;
    }

    3. Add the in the customize > custom css/js section.

    .blog-entry.grid-entry .blog-entry-readmore {
        margin-top: 0px;
    }
    .blog-entry.grid-entry .blog-entry-readmore a {
        border-bottom: none;
    }
    Thread Starter Zuzanna

    (@zrudas)

    Hi Amit!

    Thanks so much for sich a quick answer!

    1. I wanted to change the position of the blog title, not the page title. Here’s what I did, in case others have a similar issue:
    I inserted a custom title and selected “Centered” under Dashboard > Edit Post > OceanWP Settings.
    Then I went to the Customizer and made sure that under Single Blog Post > Element Positioning the “Title” field is disabled.

    2. The CSS code worked! However, changing the colour under Customize > Sidebar > Titles Border Color didn’t do anything (I had tried it before).

    3. CSS worked, thanks!

    Best tech support ever ??

    Hello,

    Try to add below code in the functions.php of the child theme. It will work for all the posts and archive pages.

    function my_page_header_style($style) {
    
    	if (is_singular( 'post' ) || is_archive()) {
    
    		$style = 'centered';
    	}
    
    	return $style;
    
    }
    add_filter('ocean_page_header_style', 'my_page_header_style');
    Thread Starter Zuzanna

    (@zrudas)

    Thanks, Amit!

    You’re welcome!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Customizing the blog’ is closed to new replies.