nemci7v
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: One image showing up, another not.Are you calling two background images from 1 div? If so, that won’t work. You’re probably doing a CSS mistake.
Forum: Fixing WordPress
In reply to: How to get login page like this.sorry wackonerd, I don’t know of such a plugin. I would like to find one as well. Let’s try a google search ??
Forum: Themes and Templates
In reply to: Floating Divs…Try and avoid absolute or relative positioning unless you really have to use them.
Make sure that floated divs have a width, especially those containing text that will extend 100%. If you have 1 div floating left and one floating right put them in a container with a clear:both property. This will resolve the issue when one div floats beneath another.
Example:
#div_container { clear:both; } .div1 { float left; width:300px } .div2 { float;right; width:400px; } HTML: <div id="div_container"> <div class="div1"> ... </div> <div class="div2"> ... </div> </div>
Forum: Themes and Templates
In reply to: Adding ColumnsThis will involve some css knowledge and php based on the content you will display in each column.
The best thing to do here is download a free multi column theme, study it, and apply what you learned to your own theme.
Forum: Fixing WordPress
In reply to: How to disable the comment sections on the theme?What links? Do you mean the “comments disabled” message?
Have you tried contacting the theme creator?
Forum: Fixing WordPress
In reply to: How to get login page like this.Well, thats is odd. Maybe artisteer has a login page template option that you used in the first site. I never used artiseer before but maybe someone who knows will answer your question
Forum: Fixing WordPress
In reply to: how to modify theme like bsocial theme (5 $ for thx)It’s all related to the theme. Your theme probably has options for all those things otherwise you have to modify the coding.
I think you’ll find more help by not offering $5 lol.. you might offend designers that get paid way more for that kind of work..
Forum: Fixing WordPress
In reply to: How to get login page like this.If it’s not a plugin you installed, the login is incorporated into the theme.
Forum: Fixing WordPress
In reply to: [Plugin: Advertising Manager] Completely at a lossAre you referring to this plugin? https://www.ads-software.com/extend/plugins/advertising-manager/
I used it on a site without any issues. You go to Ads – create new, paste your code, save and then you can add the new ads from appearance- widgets, and drag the new ad you created onto your sidebar – make sure you select it form the drop-down,
You don;t have to load any images.. just paste the entire add code. If you’re using another plugin I recommend you use the one I posted.
Forum: Fixing WordPress
In reply to: How to get login page like this.hmm, just install and activate the plugin that was used on the site you posted above. It seems logical unless maybe I misunderstood the question.
Forum: Fixing WordPress
In reply to: My two blogs loading very slowdomaisnprostore loads faster. I think it’s taking longer to load because of the ads.
Telecomdiary is probably a host issue.
See if this plugin speeds up your sites
Forum: Fixing WordPress
In reply to: How to disable the comment sections on the theme?I’m not familiar with that theme but in single.php at the bottom, there should be a code that loads the comments. Maybe something like <?php comments_template(); ?>
Erase that line.
If the theme has an option to disable the comments, it should work if you simply uncheck the boxes.
Forum: Fixing WordPress
In reply to: How to get login page like this.Do you mean you want your login page to look like the one in the link? Or you don’t know how you managed to make it like that?
It seems like a login plugin to me.
Forum: Fixing WordPress
In reply to: One image showing up, another not.The image HTML should look like this
<img src=”wp-content/themes/your_theme/images/your_image.png” alt=”…” />
Check if that’s right, otherwise paste the code you’re using so we can understand what’s going on.
Forum: Fixing WordPress
In reply to: Added a new page and can see the textHave you altered the page template? You should have
<?php the_content('Read more...'); ?>
for content to show
https://codex.www.ads-software.com/Template_Tags/the_content