• Resolved kjoonh

    (@kjoonh)


    Hi, I have some questions..
    My website is http://kjoonh.dothome.co.kr/

    Q1) How can I post below main figures instead of ‘Apologies, but no entries were found.’ message?
    Q2) In page in side menu, e.g., RESEARCH, NOBEL CENTER etc., I want to get rid of calendar but I’d like to leave it in front page (main page)
    Q3) In all of pages, how can I extend width of page?
    Q4) How can I align the message in footer (School of Material Science and Engineering, Gwangju Institute of Science and Technology) in a row?

    I think that I extend width of footer window size.. but I can’t find..
    Could you explain without using child theme? (Unfortunately, from now on, I have never used child theme…)
    beforehand, thank you for your helps.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter kjoonh

    (@kjoonh)

    Sorry, Q1 is solved….!

    Thread Starter kjoonh

    (@kjoonh)

    Q3 is also solved…
    In page.php, change from
    <div class=”content-wrap”>

    <div id=”content”>
    to
    <div class=”content-wrap”>

    <div id=”content” style=”width:100%”>

    Thread Starter kjoonh

    (@kjoonh)

    Q4 is solved…
    In footer.php, change from
    <div id=”footer-content” class=”footer-content”>
    to
    <div id=”footer-content” class=”footer-content” style=”width:NUMBER%”>
    and from
    <?php get_template_part( ‘menu’, ‘subsidiary’ ); // Loads the menu-subsidiary.php template. ?>

    <?php do_atomic( ‘footer’ ); // oxygen_footer ?>

    <?php do_atomic( ‘close_footer’ ); // oxygen_close_footer ?>
    to
    <div id=”menu-subsidiary” class=”menu-container” style=”width:100-NUMBER%”>

    <?php get_template_part( ‘menu’, ‘subsidiary’ ); // Loads the menu-subsidiary.php template. ?>

    <?php do_atomic( ‘footer’ ); // oxygen_footer ?>

    <?php do_atomic( ‘close_footer’ ); // oxygen_close_footer ?>

    </div
    In my case, NUMBER is 60…

    Thread Starter kjoonh

    (@kjoonh)

    Q2 also cleared by using ‘Widget Context’ plug-in

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Modification of pages… (custom pages)’ is closed to new replies.