nex2nun
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Index vs. Home…vs. my home…Have a look at the WordPress Codex regarding Template Tags/wp list pages. You can select to exclude the “Intro” page from your navigation leaving only “Home” as the index page.
Hope this helps!
Derek M.Forum: Fixing WordPress
In reply to: Generator Tag in RSS Feed RemovalForum: Fixing WordPress
In reply to: Extract Data To WebsiteThe easiest method may be to use an RSS feed from your blog and display that feed on your website. I would read through these topics on the WordPress Codex concerning RSS Feeds:
WordPress Feeds: https://codex.www.ads-software.com/WordPress_Feeds
Customizing Feeds: https://codex.www.ads-software.com/Customizing_FeedsHope this helps!
Derek M.Forum: Fixing WordPress
In reply to: Have setup WP blog on hosting but in wrong directory – Help?Have a look at “Changing The Site Url” in the WordPress Codex to see if this helps get your WordPress install back up and running.
https://codex.www.ads-software.com/Changing_The_Site_URL
Enjoy!
Derek M.Forum: Requests and Feedback
In reply to: page linksMost WordPress themes will automatically generate your page navigation links using the wp_list_pages() tag. You provide the name of the page link when you enter a Title for that page.
You can read more about Pages in the WordPress Codex.
https://codex.www.ads-software.com/Pages
Hope this helps!
Derek M.Forum: Requests and Feedback
In reply to: WordPress ThemesHi Vinod,
You may want to visit this page to learn more on how you can share your themes with other folks on www.ads-software.com.
https://www.ads-software.com/extend/themes/about/
Enjoy!
Derek M.Forum: Fixing WordPress
In reply to: 2.5 – How to insert images in posts/pages?Updating Bad-Behavior did the trick for me, thank you!!
Forum: Fixing WordPress
In reply to: Header wont show up…EDIT: Nevermind previous (I need some sleep apparently). I see your blog with the “/” and without.
Forum: Fixing WordPress
In reply to: Header wont show up…No worries.
Great header!
Enjoy.
-NEXForum: Fixing WordPress
In reply to: Header wont show up…then make another change
change this:
img/eretzvaju_2.jpg
to this:
images/eretzvaju_2.jpg
Forum: Fixing WordPress
In reply to: Header wont show up…You’re almost there.. double check the url of the image is the image in the following directory?
wp-content/themes/Black/img/eretzvaju_2.jpg
or could it be wp-content/themes/Black/image/eretzvaju_2.jpg
just check the actuall path to the image.
Forum: Fixing WordPress
In reply to: Header wont show up…You have to forgive me I can work better with CSS when I’m actually writing it,
change this
background-image: url("img/eretzvaju_2.jpg");
to this:
background-image: url(img/eretzvaju_2.jpg);
sorry!! ??
Forum: Fixing WordPress
In reply to: Header wont show up…It didn’t remove it, I think it just doesn’t like that height .
Remove this:
height: 0px !important;
height /**/: 120px;
and replace it with this:
height: 120px;
-NEX
Forum: Fixing WordPress
In reply to: Header wont show up…Access your CSS file either on your local machine or through WordPress through the Presentation -> Theme Editor option and add this for the header:
#header {
position: relative;
top: 0px;
left: 0px;
margin: 0px;
padding: 0;
width: 700px;
display: block;
overflow: hidden;
background-image: url("img/eretzvaju_2.jpg");
background-repeat: no-repeat;
height: 0px !important;
height /**/: 120px;
z-index: 10;
}
Give that a go.
-NEXForum: Fixing WordPress
In reply to: Header wont show up…You have the header set to a height of 120px but you also put a padding to the top of 120px with this:
padding: 120px 0 0 0;
padding parameters are
padding: top, right, bottom, left
It may be showing up, however, it’s below the padding.
Hope this helps!
-NEXEDIT: just found this too
#header a{
position: relative;
top: 0px;
left: 0px;
margin: 0px;
padding: 120px 0 0 0;
width: 700px;
display: block;
overflow: hidden;
background-image: url("img/eretzvaju_2.jpg");
background-repeat: no-repeat;
height: 0px !important;
height /**/: 120px;
z-index: 10;
}
you have #header a{ #### } wouldn’t that be for links? Try just #header { ### }