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
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')); ?> 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.
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/
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 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