degamer12
Forum Replies Created
-
Forum: Themes and Templates
In reply to: WidgetsMaby this plugin will help you. https://www.ads-software.com/extend/plugins/widget-context/
Forum: Themes and Templates
In reply to: Static page with modifiable content areasMaby this is something for you ? I used it myself once and I really liked it.https://www.ads-software.com/extend/plugins/multiple-content-blocks/
Forum: Themes and Templates
In reply to: How to have a footer like this…?Yeah. But make sure you dont put the div’s around the </body> tag. Else your website wont work anymore.
Forum: Themes and Templates
In reply to: help me about little configFind out what the classes are from the items you want to hide.
Then just add this to your css:.CLASSNAME{display:none;}
Forum: Themes and Templates
In reply to: help me about little configif you would give us a link to your site we could help you better.
You could choose to use a page template for the frontpage. Read more about it here: https://codex.www.ads-software.com/Pages
Forum: Themes and Templates
In reply to: How to have a footer like this…?Do you have css knowledge so we can explain this to you in code ? if yes:
html for footer<div id="footercontainer"> <div id="footercontent"> // footer code here </div> </div>
CSS:
#footercontainer{width:100%;background:red;} #footercontent{width:800px;margin:0 auto;}
Forum: Themes and Templates
In reply to: Overlay image over menuNo inside your header.php there is a wordpress code that generates the menu.
Forum: Themes and Templates
In reply to: Embed a plugin in templateI will look into it. Thanks for the advice.
Forum: Themes and Templates
In reply to: Overlay image over menuOowh haha another fault of mine. Sorry kinda sleepy I guess. You should put the echo in your header.php. Not in the index. Then in the header.php, use the method I presented earlier. I hope you get what I mean. So the code in your header.php should look something like:
`
?><div id=”testdiv”>
<?php
echo ‘the image’;
code to call the menu;
?>
</div>Forum: Themes and Templates
In reply to: help me about little configIn the css you can just give all the right classes a display:none; if you dont want they to display. About the seo: some believe its good for seo some believe it really doenst matters. I think it wouldn’t be that big of a difference. If you wanna know for sure, google an article about it ;).
Forum: Fixing WordPress
In reply to: Individual posts no workYou maby have a link to the site so we can see the actual problem ?
Forum: Themes and Templates
In reply to: Embed a plugin in templateOk, but I still want it. Could you help with it ?
Forum: Themes and Templates
In reply to: Contact Form ProblemAre you sure you activated the plugin that is supposed to turn this code into the form ? Btw what plugin are you using to do that ?
Forum: Themes and Templates
In reply to: help me about little configI think I understand your problem. If you dont want the article text and meta content to be displayed in your website, you have to delete it from the template. Delete the div’s around: the_title();,the_content(); and delete the div where all the meta content stands in.