wprock
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Bullet Problems.description ul.products {
list-style: disc!important;
}.description ul li {
margin: 0 20px 0px 16px!important;
}Forum: Fixing WordPress
In reply to: Bullet Problemsjust add
Forum: Fixing WordPress
In reply to: Bullet ProblemsRevert back to old CSS and try this one
.description ul.products { list-style: disc; } .description ul li { margin: 0 20px 0px 16px; }Forum: Fixing WordPress
In reply to: Bullet ProblemsUse following CSS. Both CSS are locating in style.css file. you will find and replace with my code.
.products .right_products ul, ul.products { list-style: disc; } .products .right_products ul li { margin: 0 20px 0px 16px; }Forum: Fixing WordPress
In reply to: How would I transfer my whole site database to a usb?Forum: Fixing WordPress
In reply to: WordPress pages do not match Dashboard pagesAre you using any cache plugin? Clear your server, browser cache and check once?
Forum: Fixing WordPress
In reply to: Images not displaying after reinstallAre you deleted all media files from uploads folder? Check the uploads folder via FTP once. You will get it inside the wp-content folder
Forum: Fixing WordPress
In reply to: navigation bar suddenly made white gapYes. i used Firebug. FF is my default browser. I see the nav bar and then I applied my brain and previous experience :).
Forum: Fixing WordPress
In reply to: mysterious 500 internal server error – help!connect via FTP or CPanel . You will get the file in root folder
Forum: Fixing WordPress
In reply to: mysterious 500 internal server error – help!remove the .htaccess file or put in backup folder and then check once the site
Forum: Fixing WordPress
In reply to: WordPress upgrade – fatal errorDownload the WP 3.5.1 from wordpress.org Next extract the zip and upload the all files and folders except the wp-content folder via FTP.
Forum: Fixing WordPress
In reply to: New Posts and Page Updates Not Showing on Other ComputersLogin to wp-admin. Then click on wp supre cache link under the General Settings Menu. You will get a button ‘Delete’ cache button> Next check your site.
Forum: Fixing WordPress
In reply to: Problem with blog page backgroundHTML tag have problem. You will fix the ‘div’ tag in blog page. div for #secondary will go inside the div#primary tag. Then you will get white BG. Check the HTML for blog page
Forum: Fixing WordPress
In reply to: Changing "Home" to something elsehttp://pwdtechnology.com/twenty-ten-theme-customization/
<?php function twentyten_page_menu_args( $args ) { $args['show_home'] = "Hjem"; return $args; } ?>But first follow the @esmi’s instruction and create a child theme. Then put my code in functions.php file of that child theme
Forum: Fixing WordPress
In reply to: Unwanted TextI got the issue in head tag. I am getting this:
<meta name=”generator” content=”WordPress 3.5.1″ />
jjj <style type=”text/css”>You will check the functions.php or other’s core file of the theme. it is calling a hook wp_head() when theme is creating some CSS dynamically for portfolio page. By chance the file is edited and this ‘jjj’ is inputted there. find the function and check the code.