Durgé Seerden
Forum Replies Created
-
Forum: Themes and Templates
In reply to: need help urgentlyForum: Fixing WordPress
In reply to: ‘read more’ links in postsYou could just make a link to the post somewhere for example add the following line under
<?php the_content(); ?>
:<a href="<?php the_permalink(); ?>">Read more</a>
Hope this will help.
Greetz,
Durgé
Dimics.comForum: Themes and Templates
In reply to: Layout <div>’s not displaying in right placeThats right but it’s not nessesary:
You can start of by coding your whole site in the index.php it just gives you an overview of all your code. When it works you cut paste your header sidebar and footer into the new files and then you need to insert the get_header(); get_… tags were you’ve removed the code.
It’s not nessesary that your theme is devided into the different template files while coding, it’s good to devide your theme once you have your basic index page so you can go on by making the single.php, page.php (and all the other) template files.
Greetz,
Durgé
Dimics.comForum: Themes and Templates
In reply to: Help with Sidebar Please!Forum: Themes and Templates
In reply to: removing underlined links in CSSIf i delete (with firebug) the border-bottom from a in style.css no link is underlined so it should work! xD
Durgé
Dimics.comForum: Themes and Templates
In reply to: 3-column theme with header nav and “sidebar cap”I don’t know a theme but i think it’s best to make two widgetised sidebars a tutorial about this:
https://www.quickonlinetips.com/archives/2007/11/how-to-create-multiple-dynamic-sidebars-for-wordpress-widgets/Greetz,
Durgé
Dimics.comMake a custom page template. Include the loop
And then it will show your posts.Greetz,
Durgé
Dimics.comForum: Themes and Templates
In reply to: Help with Sidebar Please!There is a font tag with color orange in your php file xD (i guess sidebar.php or index.php).
Just remove it and you can style it with css.
The stylesheet i can view with firebug and web developer toolbar so no needs to post.Greetz,
Durgé
Dimics.comForum: Themes and Templates
In reply to: Read more link takes to the latest post not the featured post!You have used a lot of custom php functions. There’s no wp tag inside the code above, so i can’t tell why it’s going wrong. I think the problem is not in the code above but in the functions you have defined somewhere else.
So check if you spot any mistakes, and maybe you will find something.
You could also post some bits of it but i understand if you don’t want to.Greetz,
Durgé
Dimics.comForum: Themes and Templates
In reply to: Help with Sidebar Please!If you want to hide the title change ad the attribute title_li:
<?php wp_list_pages('exclude=1&title_li='); ?>
This will set the title to have no value and so doesn’t show up.
The wordpress page about this tag is:
https://codex.www.ads-software.com/Template_Tags/wp_list_pages
Hiding the title is one of the exmaples somewhere at the bottom, there they will give some more explenation.Greetz,
Durgé
Dimics.comForum: Themes and Templates
In reply to: Layout <div>’s not displaying in right placeI guess you didn’t write your own wordpress tags, because else it wouldn”t create it’s own divs. Try to learn about the wordpress loop and template tags starting at the wordpress documentation.
There are some great tutorials about creating a wp theme an example:
https://www.wpdesigner.com/2007/02/19/so-you-want-to-create-wordpress-themes-huh/
Its defenitly not a short tutorial but gives you a great base.Greetz,
Durgé
Dimics.comForum: Themes and Templates
In reply to: removing underlined links in CSSDo you want to remove the underline from each link on your page?
Then just add:
a {text-decoration:none;}
somewhere at the bottom of your stylesheet.I saw you have a bottom border on each link somewhere arrount line 34, maybe thats the problem.
Durgé
Dimics.comForum: Themes and Templates
In reply to: This Just In TabsAm i’m just understanding it totaly wrong or do you just want to change the link?
In that case instead of the line above use:
href="https://www.mysite.com" title="Blog">Main Website
Greetz,
Durgé
Dimics.comForum: Themes and Templates
In reply to: removing underlined links in CSSCan you provide a link?
Try:.links ul a {text-decoration:none;}
then you will actually select the link instead of its container.Hope this will help.
Greetz,
Durgé
Dimics.comForum: Themes and Templates
In reply to: Theme does not loadDid you try login in by going to:
https://www.yoururl.com/wp-admin
.
Did you changed the theme folder after selecting it because than wp won’t find it and won’t load your site.I hope this will help.
Greetz,
Durgé
Dimics.com