DestinyMaker
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Changing header size: Changes are bring overridenHello,
do you mean the large banner of nature? or what?
Forum: Fixing WordPress
In reply to: footer.php question; What is this thing?Hello,
I can’t really tell, cause there’s no link or url for us to look at to, but my best guess is that “as what the action says” generate_credits, i think it’s for them to have the credits on theirs(theme, plugin) who knows, unless you give us something to look at.
-DM
Forum: Fixing WordPress
In reply to: How to change post title font size?Hello,
What titles? like the “Is writing an E-book worth it?” ?
That one sentence’s class is “wp-caption-text”
and in the style.css, it’s CSS looks like this one:
.wp-caption-text { color: #999; font-style: italic; text-align: center; }
create a custom.css for it.. or if you really don’t care just edit it out to suit your taste.
Have fun.
Forum: Fixing WordPress
In reply to: Uploaded pictures don't show on the pageAny link or url..
My best guess is that since you’ve changed your host, you have to change the src of the images too..
Forum: Fixing WordPress
In reply to: Specify meaning of some 'words' within the articleYou can use tooltips ??
or if you want, you can use javascript to show something when they hover on the certain word ( just look at facebook, when you hover at their names or picture you will see a glimpse of their profile )
or use THIS
Forum: Fixing WordPress
In reply to: Can i install a new theme for my site and revert back if necessary?about the sidebar, you need your copy(i guess, i never used one) of the adsense as well as those html, if i’m not mistaken, cause they are really not part of the theme itself. Better if you have a child theme.
Forum: Fixing WordPress
In reply to: Can i install a new theme for my site and revert back if necessary?the posts and pages stays with you, only the theme will be changed.
Forum: Fixing WordPress
In reply to: Can i install a new theme for my site and revert back if necessary?yep ??
Forum: Fixing WordPress
In reply to: Can i install a new theme for my site and revert back if necessary?Step 1: Go to yourwebsite.ext/wp-admin
Step 2: Login your admin account on wordpress
Step 3: On the dashboard, go to Appearance > Themes
Step 4: Search the theme you want and activate
Step 5: Congrats.for reverting it back, just do the steps again.
Forum: Fixing WordPress
In reply to: JS at bottom of a pageOkay I need some information.
I looked at the Preview, HTML, CSS, and JS, especially HTML..
you said you copied all of them right?
that JS isn’t your ordinary Javascript that you can caged inside <script> tags. That is a JQuery, a javascript library.
you need jquery on your atleast header or footer or somewhere if you don’t have.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
if that doesn’t work, let’s try another method.
Have fun.
Forum: Fixing WordPress
In reply to: JS at bottom of a pageThat works on the url you provided, so if that Javascript works, it should also works with yours.
Okay let’s point out things, are your “list” and “grid” ID of the elements are defined in your HTML ? even the ID products and Class items?
Forum: Fixing WordPress
In reply to: HTML siteelleadventure, one more thing..
on that tutorial there’s no function.php so to help you out(it takes me more than 2 days to figure this out lol)
<?php function register_my_menus() { register_nav_menus( array( 'header-menu' => __( 'Header Menu' ), 'extra-menu' => __( 'Extra Menu' ) ) ); } add_action( 'init', 'register_my_menus' ); ?>
on function.php put that.
<div id="navmenu"> <ul> <?php wp_nav_menu( array( 'theme_location' => 'header-menu', 'container_class' => 'header_menu_class' ) ); ?> </ul> </div>
^ and something like this can help you on displaying your menu. Add this on header.php
<?php wp_head(); ?>
^ something like this will help you function all of your plugins(this is not included on the tutorial too). Header.php too.
This should give you a headstart. Have fun
Forum: Fixing WordPress
In reply to: HTML siteyep, i was in your situation before and have no idea about creating my own theme, glad there’s something like that.
You’re Welcome. Have fun ??
Forum: Fixing WordPress
In reply to: HTML siteYes it will saved as .txt file, i dunno if you can name it as index.php and won’t save as .txt file.
I don’t know what Adobe Program can open it but there is one among them. Either way, you can do and try this to the file manager of the host site you’re using.
Forum: Fixing WordPress
In reply to: Editing Page HTML Source CodeCheck every plugin you have, I think it’s the plugin itself if it’s not editable on the editor.