Durgé Seerden
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How to fiks that vertical line on my themeWell you’d have to modify your theme.. It would take some searching which files need to be changed so I can’t say.
Good luck!
Forum: Themes and Templates
In reply to: How to fiks that vertical line on my themeGreat that you’ve fixed it!
You actually get the same effect by deleting the image.
By comment I mean comment it in the CSS with /* */ so it won’t be used..
It won’t fix the position.To get the right position I guess you need to modify the image you’ve deleted.
Forum: Themes and Templates
In reply to: How to fiks that vertical line on my themeIt’s actually a background image on the .wrapper div..
From line 443 in styles.css.Delete or comment the background line:
#wrapper { float: left; clear: both; width: 100%; /* background: url(images/bg-wrapper.gif) repeat-y !important; */ overflow: hidden; }
This should hide the line.
Forum: Fixing WordPress
In reply to: Profile PictureYou need to assign the email associated with Gravatar to your WordPress account. The email of your WP-account is the way to add your Gravatar.
Forum: Themes and Templates
In reply to: How to specify css & js for individual pagesO i overlooked something, you cant use is_about or is_team.. check the wordpress codex.. is_page(“about”) would be correct.. https://codex.www.ads-software.com/Function_Reference/is_page
Forum: Themes and Templates
In reply to: How to specify css & js for individual pagesheader.php would be the preferred placement for styles and scripts
Forum: Themes and Templates
In reply to: How to specify css & js for individual pagesWell it depends, are you trying to make a theme to sell or share? Or are you working on your own site that just needs to work.
If it’s your personal site I would worry about the wp_register_script, its not necessary. You can simply use bloginfo(‘template_url’) to get the correct url to your template.
Your php wasn’t correct, You didn’t have al the php in php tags. Also you should add the correct path, the following should work:
<?php if(is_home()): ?> <link type="text/css" rel="stylesheet" href="<?php bloginfo('template_url') ?>/home.css" /> <?php elseif(is_about()): ?> <link type="text/css" rel="stylesheet" href="<?php bloginfo('template_url') ?>/about.css" /> <?php elseif(is_team()): ?> <link type="text/css" rel="stylesheet" href="<?php bloginfo('template_url') ?>/team.css" /> <?php endif; ?>
Forum: Themes and Templates
In reply to: show summery on data from meta box?Take a look at this topic, it looks like the same question (with multiple answers):
https://www.ads-software.com/support/topic/how-to-character-limit-for-custom-fields?replies=7
They use regular PHP to limit the character count.
Good luck!
Forum: Themes and Templates
In reply to: How to specify css & js for individual pagesIt’s not recommended to use different styles and scripts for every page, try using as few as possible. But sometimes it comes in handy:
You can use is_home(), is_page(), is_pagetemplate() functions to include something for a specific page.
For example stylesheet for home:
<?php if(is_home()): ?> <link type="text/css" rel="stylesheet" href="home.css" /> <?php endif; ?>
Same for scripts, by changing the is home function by is_page() you can specify which page.
https://codex.www.ads-software.com/Function_Reference/is_page
https://codex.www.ads-software.com/Function_Reference/is_page_templateHope this helps.
Greetz,
DurgéForum: Everything else WordPress
In reply to: Google adsense or AdwordsAdsense is to make money. Adwords is to advertise.
https://www.google.com/services/Greetz,
Durgé
Dimics.comForum: Themes and Templates
In reply to: Double Coloum after disqus installtionOk what you need to do is modify the index.php file. Search for the post div, within that div is the date dive with the comms div. There are to links witch are the comment boxes. The first one is the empty one, so try to delete it.
Please make sure you have a backup so you don’t delete anything by exident.Hope this will help.
Greetz,
Durgé
Dimics.comForum: Themes and Templates
In reply to: Text wont wrap around imageThere is something wrong in the css. I don’t know if you have any expierience in css, but you have to add a float to the image.
An example of this would be:
img {
align:left;
}But this will aply on every image on your side so use a class.
If you have no css knowledge at all it would be pretty difficult.Hope this can help you.
Greetz,
Durgé
Dimics.comForum: Themes and Templates
In reply to: Change color of “Current” Page in the MenuWordPress will add a .current_page_item class to the link of the page thats active. So instead of adding the menuactive ID/class just style the .current_page_item in your css file.
Hope this will help.
Greetz,
Durgé
Dimics.comForum: Themes and Templates
In reply to: No Hover LinksWhat kind of advertising are you using. Many ads (for example adsense) will have styling of there own, the only way to change it is inside the adsense account.
But if it are just text links, your class should work. I saw on your site that there’s no
nohover
class styled.
The css would be:.nohover a:hover { color:#fff; /*same color as none hover state*/ }
Greetz,
Durgé
Dimics.comForum: Themes and Templates
In reply to: Category TroubleThe problem is inside the code after the code that shows the home button inside the header.php. Maybe you can post the code from the
- .
I think you use <?php wp_list_categories(); ?> to show the categories, compare with the wp documentation about this to see if there are any mistakes.
Hope this will help.
Greetz,
Durgé
Dimics.com