jomarlipon
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Error occurred: 404 – not foundWe have the same problem liquid8 and it really works..
The web hosting is in Parallel and not cPanel.
Forum: Fixing WordPress
In reply to: How to output the text before the_category?No problem. Glad it work!.. ??
Forum: Fixing WordPress
In reply to: How to output the text before the_category?Posted on <?php echo the_time(‘F j, Y’) ?> <?php echo ‘in’.the_category(); ?>
Try this code
Forum: Fixing WordPress
In reply to: How to output the text before the_category?Hi,
Try this code
Posted on <?php echo the_time(‘F j, Y’) ?> in <?php echo the_category(); ?>Forum: Fixing WordPress
In reply to: contact form placeholder not showingHi,
Go to your form (Contact Form 7), when you input remember to put the placeholder.
Sample
[text text-151 "fdfdf"]
>> fdfdf is the placeholder.
Try it.
Cheers,
Jomar Lipon
jomarlipon.comForum: Fixing WordPress
In reply to: plug in failed – can not create directoryHi Miss Nicole,
Here’s what you gonna do.
Extract your downloaded zip file. After extract, open the folder which the same as the file name. Then open the folder, SELECT ALL and add to archive. Remember to save as .zip.
Then upload the new compressed file.
Or another option,
Go to WP Dashboard, go to Plugins >> Add New >> search “Contact Form Builder”, once you’ve found the plugin. Just click “Install” button.
Forum: Fixing WordPress
In reply to: Header not showing up in FirefoxHi naomikt,
Edit your CSS Code on line 563 or find this code
.site-header .site-introduction {
float: left;
padding-top: 10px;
width: 30%;
}and replace with this code
.site-header .site-introduction {
padding-top: 10px;
width: 30%;
}Hope I did help you.
Forum: Fixing WordPress
In reply to: How to add a menu items that links to main page?Hi,
Go to Appearance > Menu > Select the menu that display on Your navigation
Then create a custom URL “HOME” and put your domain to URL field.Forum: Fixing WordPress
In reply to: Problem with links in pageHi,
As I see to your site, the link is https://www.grandparentsasparents.org.uk. It mean that it will just add to the domain url.
Change it to https://www.grandparentsasparents.org.uk and it will work.
Hope it helps.
Forum: Fixing WordPress
In reply to: changing footer widget text colorIn your style.css
#footer{
color: #fff
}
change to
#footer{
color: #hexcolor of the color you want.
}Forum: Fixing WordPress
In reply to: CSS files won't loadThat could be the hint. So mean, the style.css is not found..
Forum: Fixing WordPress
In reply to: CSS files won't loadThe site didn’t read your CSS..
Locate if you’re existing theme has style.css
If exist,
Go to header.php and put the code in between with <head> tag
<link rel=”stylesheet” href=”<?php bloginfo(‘template_url’);?>/style.css”> or
<link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>”>Forum: Fixing WordPress
In reply to: Centering or Removing a Log in on a page#wpmem_reg label.text, #wpmem_reg label.checkbox, #wpmem_reg label.textarea, #wpmem_reg label.select, #wpmem_login label { color: #ffd700 !important; }
Try the code above.
Forum: Fixing WordPress
In reply to: Theme Content background to whiteThe theme create box-shadow for the content image.
If you want to remove that box-shadow.
Put this code
.content img { box-shadow: none !important; }
Forum: Fixing WordPress
In reply to: How do I center my Title and Description(Theme=Destro)Put this code to your css file.
#logo {
float: none;
margin: 0 auto;
text-align: center;
width: 50%;
}