oberoibunty
Forum Replies Created
-
Forum: Localhost Installs
In reply to: Create a copy of current websiteHi jarmar
Please follow these steps to create copy of your live website:-
1. Copy the theme folder which developer has given you and paste in you local server xampp,wampp/ but ever are you using. For example go to xampp/htdocs/wordpress/theme
and paste your theme folder.
2. create a database.
3. import database in your current database which developer has given you.
4. change the database name in theme/wp-config.php file
5. open your website dashboard go to Appearance/themes/ open theme activate your new theme and visit to website
if there any problem please ask will solve it in detail.Thanks
Forum: Fixing WordPress
In reply to: Audio player overlapping text at top of postingHi authorrlj
Please find this paragraph in <div id=”main”> and replace it with your paragraph.<p style=”font-family: verdana;color: black; clear: both;”>Read: Colossians 3:23 |</p>
There will be use {clear: both;} css property. after color: black; property.
Clear: both__
The clear property is directly related to floats. If the element can fit horizontally in the space next to another element which is floated, it will. Unless you apply clear to that element in the same direction as the float. Then the element will move down below the floated element.Thanks.
- This reply was modified 7 years, 9 months ago by oberoibunty.
- This reply was modified 7 years, 9 months ago by oberoibunty.
Forum: Fixing WordPress
In reply to: Reduce Logo SizeHi Andrew Nevins
Can you provide website link.
Thanks
Forum: Fixing WordPress
In reply to: CSS code for changing background color of add to cartHi selfiner
please find these line and simply change there. you can change any background color or text color.
for example
.woocommerce div.product form.cart .button {
vertical-align: middle;
float: left;
background: red;
color: #000;
}
thanks,Forum: Themes and Templates
In reply to: [Fruitful] How make links in the menu underlined ?Hi barbaer
ok use this css property and check it solved yours problem
a {
text-decoration:underline;
}Thanks
Forum: Themes and Templates
In reply to: [Fruitful] How make links in the menu underlined ?Hi baraber
please share the web site link and take any type of wordpress project helpthanks
- This reply was modified 8 years, 4 months ago by oberoibunty.
Forum: Themes and Templates
In reply to: [customizr] – help with navbarHi premdhar
use this code i hope it will help
open your stylesheet and add this css Thatsit this is the one way to remove your top google search top bar and second is you can remove you google search bar from php filediv#___gcse_0 {
display: none;
}thanks
Forum: Themes and Templates
In reply to: [Sela] Changing background colour behind logo in sela themeyour welcome
Forum: Themes and Templates
In reply to: [Sela] Changing background colour behind logo in sela themeHi almaca
try this code and color also your website looking so cool.site-branding {
padding-top: 0px;
padding-bottom: 0px;
background-color: #000;
}Thanks
- This reply was modified 8 years, 5 months ago by oberoibunty.
Forum: Themes and Templates
In reply to: How to reduce vertical space between widgets in sidebarHi bygderad
can you provide the site link
thanksForum: Themes and Templates
In reply to: [Barletta] Centre menuHi rob
please provide website link
ThanksForum: Themes and Templates
In reply to: [Basic] How Can I Create “CHILD THEME” for “Basic” Theme?Hi Suyogya
i am right or no i am also begener in wordpress communityThanks
- This reply was modified 8 years, 5 months ago by oberoibunty.
Forum: Themes and Templates
In reply to: [Basic] How Can I Create “CHILD THEME” for “Basic” Theme?Please try fowling step for making a wordpress child themes
/*
Theme Name: Twenty Fifteen Child ——-enter here name of your base theme——
Theme URI: https://example.com/twenty-fifteen-child/
Description: Twenty Fifteen Child Theme
Author: John Doe
Author URI: https://example.com
Template: twentyfifteen ———–enter your base theme name this is (mandatory)—–
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
Text Domain: twenty-fifteen-child
*/
@import url(‘../twentyfifteen/style.css’);This is the one method to make a child theme in wordpress with style.css
and the second method to create child themes with function
<?php// creating a function to add stylesheet
function twentyfifteen-child_add_parent_style() {
wp_enqueue_style( ‘twentyfifteen-style’, get_template_directory_uri() . ‘/style.css’, array() );
}
// add action name, function name
add_action( ‘wp_enqueue_scripts’, ‘twentyfifteen_add_parent_style’ );
/**- This reply was modified 8 years, 5 months ago by oberoibunty.
Forum: Themes and Templates
In reply to: [Basic] How Can I Create “CHILD THEME” for “Basic” Theme?Hi dicsuw,
witch base theme are you using for making child themes can you provide the link of wordpress themeThanks
Forum: Themes and Templates
In reply to: [Customizr] Add Padding left & right to the pages and blogsHi Tandhruil please try this code i hope it will help
.container, .span12 {
width: 100%;
max-width: 82.81%;
margin: auto;
}.colophon {
width: 100%;
max-width: 81.82%;
margin: 0 auto;
}Thanks