• Hello, tell me how you can set the background color of blog entries in the theme OceanWP !? Just for widgets, I found and put the background color https://yadi.sk/i/7BuPs_xsjY_jbw, but I can’t find it for the blog, tell me how to implement it!? I tried to go to the address “Settings ▸ Blog ▸ Blog entries” but there is nothing on the choice of color!?

    • This topic was modified 5 years, 5 months ago by slypro.

    The page I need help with: [log in to see the link]

Viewing 15 replies - 31 through 45 (of 103 total)
  • Thread Starter slypro

    (@slypro)

    And is it possible to break down the divisions of the text and comments in the records, it is probably already in some kind of file!? That they were not on the same background, but separate: https://yadi.sk/i/QxHT7Ms_6Byf1A!

    Thread Starter slypro

    (@slypro)

    Even as I noticed, all the entries when opening have headers, they are displayed in large size! But on the created pages the headings are not displayed when opening, this can be corrected, so the heading is also displayed!?

    1. To change the continue reading text, add the below code to the functions.php file of the child theme –

    function my_read_more_text() {
    	return 'Read More';
    }
    add_filter('ocean_post_readmore_link_text', 'my_read_more_text' );

    2. Add the below code to the Customize > Custom CSS section to style the button. Edit the code as per your need –

    .blog-entry.large-entry .blog-entry-readmore a {
        background-color: #00d0ff;
        color: #fff;
    }

    3. Go to Dashboard > Feedback and delete the comments or delete the sample post from the Dashboard > Posts

    4. I didn’t understand it clearly. Are you asking about the page title? Go to Customize > General Options> Page Title and select Background Image from the Style dropdown – upload an image.

    Thread Starter slypro

    (@slypro)

    Many thanks, it turned out with the text and the color of the button! As for the title, it is displayed on the same panel with bread crumbs, can you transfer it to the page itself https://yadi.sk/i/DaHKiM01beXhcg?

    You need to use the child theme to move it. Add all the below codes to the functions.php file of the child theme –

    1 – Add the title for the pages-

    function prefix_add_page_title() {
        if ( is_page() ) {
            echo get_the_title();
        }
    }
    add_action('ocean_before_page_entry','prefix_add_page_title'); 

    2. Move breadcrumb –

    function prefix_oceanwp_breadcrumb() {
        if ( is_single() || is_page() ) {
            echo do_shortcode( '[oceanwp_breadcrumb]' );
        }
    }
    add_action('ocean_before_content_inner','prefix_oceanwp_breadcrumb');

    Now go to Customize > General Options > Page Title and select Hidden from the Style Dropdown.

    Thread Starter slypro

    (@slypro)

    Yes, everything is displayed, but not as much as on the record page: http://newsitetest.ru/%d0%bf%d1%80%d0%b8%d0%b2%d0%b5%d1%82-%d0%bc % d0% b8% d1% 80 /
    Tell me how you can display the title, which is designed as in the records!? Thank you!

    I didn’t understand it clearly. Are you talking about search page? If yes, then update the above code and add is_search() in the code along with the is_page() and is_single(). Use the updated code below –

    function prefix_add_page_title() {
        if ( is_page() || is_search() ) {
            echo get_the_title();
        }
    }
    add_action('ocean_before_page_entry','prefix_add_page_title'); 
    
    function prefix_oceanwp_breadcrumb() {
        if ( is_single() || is_page() || is_search() ) {
            echo do_shortcode( '[oceanwp_breadcrumb]' );
        }
    }
    add_action('ocean_before_content_inner','prefix_oceanwp_breadcrumb');
    Thread Starter slypro

    (@slypro)

    Yes, now everything is installed, displayed! But it is not displayed in such a design as on simple records …

    Can you share screenshots and link to the page where you have this issue? Because I really didn’t understand it clearly.

    Thread Starter slypro

    (@slypro)

    This is how the title on the page now looks like: https://yadi.sk/i/hztDkLjBD4qTlg
    I would like to change it like on the posting page: https://yadi.sk/i/p7TpnpzArjG6aw
    Here, as you can see, the font size is different, the text color, and there is a line separating the title from the text itself! I would like to display such headings on the pages so that during the transition there would be no differences in the form of headings!

    You need to add some CSS to fix it. Did you remove the code because I didn’t see the title on the search page?

    Thread Starter slypro

    (@slypro)

    No, I did not delete anything! It is also displayed!

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    I have restored this post, however I must make the following clear.

    Sticky Header is a premium plugin – Please DO NOT ask for help with it here on WordPress.org, you have to ask on OceanWP. If you didn’t buy it, then you’re using it without a license which means you need to correct that, pay for the license, and go on.

    Also NEVER DOWNLOAD CODE FROM NULLED SITES. Nulled sites are ones that give away premium (pay for) plugins and themes for free. They CANNOT be trusted, and using them puts your site at risk.

    You may continue to seek support on free code here in WordPress.org, but for all things premium please go to the vendor’s official sites.

    Thread Starter slypro

    (@slypro)

    I apologize for the mistakes I made out of stupidity and not knowing, I will try to avoid them more!
    Tell me, please, is there a possibility to make the footer of the site approximately the same as in this example: http://prntscr.com/ngdrgw!? This example is taken from the site: https://evgeniypopov.com/
    To “Copyright ©” was at the bottom, the menu itself was not displayed on the side, but above. Just above the logo, icons of social networks, etc.

    Thread Starter slypro

    (@slypro)

    I added the menu to the basement, but it is displayed on the side http://newsitetest.ru/, is it possible to move it higher and leave “Copyright ©” in the center !? And is it possible for the site logo to allocate a place even above the bottom menu?

Viewing 15 replies - 31 through 45 (of 103 total)
  • The topic ‘OceanWP blog background color’ is closed to new replies.