Customization

Discussion in 'Regal WordPress Theme' started by charlythepearl, Oct 30, 2013.

  1. charlythepearl

    charlythepearl New Member

    Joined:
    Jan 3, 2013
    Messages:
    18
    Likes Received:
    0
    I'm trying to customize the content area on my homepage. I want to create columns on my homepage i have the code but it doesn't seem to be working. My website is http://www.imanicollective.com/

    the code put i put in is <div class="content">
    <div id="content-1"></div>
    <div id="content-2">
    <div id="content-2-1"></div>
    <div id="content-2-2"></div>
    </div>
    </div>

    #content-1 {
    background:#bfb;
    }
    #content-2-1 {
    background:#ddf;
    }
    #content-2-2 {
    background:#dff;
    I put this in styling options and doesn't seem to work
    please help
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    .content {
    overflow: hidden;
    }
    and then go to the front-page.php file present in your theme directory and then replace the code given below with the existing code as instructed in the image given below.

    Code:
    <?php echo do_shortcode(inkthemes_get_option('inkthemes_content')); ?>
    [​IMG]


    And then use column shortcode in the Homepage Content Area section of your dashboard.

    Follow the link given below to use shortcode for this.
    http://www.inkthemes.com/how-to-use-shortcodes-in-themes/02/

    I hope this will help you.
     
  3. charlythepearl

    charlythepearl New Member

    Joined:
    Jan 3, 2013
    Messages:
    18
    Likes Received:
    0
    How are you guys. I'm looking to add an address to the right corner of my header My Logo is on the Left. I created the address as and img and want to insert it under the Menu bar cant find the div area to insert it. my website: http://thecathedralonline.org/
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Go to header.php present in your theme directory and add the code given below

    Code:
      <div class="address-image"><img src="Enter Your Image Address Here"></div>
    Check image for reference

    2014-01-21_1336.png


    Now,


    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
     .address-image {
    float: right;
    }
    

    This will solve your issue.



    Thanks & Regards
    Gourav Shrivastava
     

Share This Page