Remove Frame Around Main Page Content?

Discussion in 'ColorWay WordPress Theme' started by irissalmins, Oct 25, 2012.

  1. irissalmins

    irissalmins Member

    Joined:
    Jul 22, 2012
    Messages:
    50
    Likes Received:
    0
    Is there a way to get rid of the area above the main content area?
    Is there a way to have one solid background without any frame from the content area to the entire area of the window?
    [​IMG]
     
  2. Harmeet

    Harmeet Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    360
    Likes Received:
    15
    Hello,

    Can you please send the screenshot, and tell us which frame do you want to remove and what and where do you want the color. So that we cangive you the exact solution.

    Thanks.
     
  3. musikus

    musikus New Member

    Joined:
    Nov 2, 2012
    Messages:
    5
    Likes Received:
    0
    I want to remove frame - this first frame grey around whole page. What i need to delete in code?
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .container {
    box-shadow: none!important;
    }
     
  5. musikus

    musikus New Member

    Joined:
    Nov 2, 2012
    Messages:
    5
    Likes Received:
    0
    Done thanks !
     
  6. musikus

    musikus New Member

    Joined:
    Nov 2, 2012
    Messages:
    5
    Likes Received:
    0
  7. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Go to blog.php present in your theme directory and remove the code given below

    Code:
    Posted on
                            <?php the_time('F j, Y'); ?>
                            by
                            <?php the_author_posts_link() ?>
                            in
                            <?php the_category(', '); ?>

    Sending image for reference

    [​IMG]


    This will solve your issue.
     
  8. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Go to blog.php present in your theme directory and remove the code given below

    Code:
    Posted on
                            <?php the_time('F j, Y'); ?>
                            by
                            <?php the_author_posts_link() ?>
                            in
                            <?php the_category(', '); ?>

    Sending image for reference

    [​IMG]


    This will solve your issue.
     

Share This Page