Thomas Eschemann
Forum Replies Created
-
Forum: Themes and Templates
In reply to: why inline element doesn't work?The code you posted does print Title and Content in one line, however you probably shouldn’t be printing the_content() in a h2 tag.
I would rather use something like that :<h2 class="inline"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2> <span class="entry"><?php the_content(); ?></span>
.inline{ display:inline; }
Forum: Themes and Templates
In reply to: Spacing issues in IE (twentyeleven theme)…Hi,
The easiest solution I see is to use :
<!--[if IE 7]> your IE7 stylesheet here <![endif]-->
to redefine the position of both blocks in IE.
Forum: Themes and Templates
In reply to: how to change the post content on mainpage?Hi,
If you don’t really care about old browsers you could add something like this to your style.css :
#content img{ opacity:0.5; } #content img:hover{ opacity:1; }
Also I noticed you are using the same ID for each post “home_image”, you should change that to a class.
Forum: Themes and Templates
In reply to: How to change header nameIn your Dashboard go the Settings and edit the first field called Site Title
Forum: Themes and Templates
In reply to: how to change color of titleHi,
Find the following lines in your style.css :
#logo a { color: #424242; text-decoration: none; font-size: 40px; float: left; }
And edit
color: #424242;
by setting color to what ever color you want (https://www.colorpicker.com/).You will also need to edit the following styles in your header :
#logo a, #topmenu ul li a, #footmenu ul li a, #comments, body, .towfiq{ color:#ffffff!important; }
to
#topmenu ul li a, #footmenu ul li a, #comments, body, .towfiq{ color:#ffffff!important; }
Forum: Themes and Templates
In reply to: Remove sidebar/widget areaHi,
WordPress themes usually use<?php get_sidebar(); ?>
to include the sidebar. Removing this instruction from your pages should remove the sidebarForum: Themes and Templates
In reply to: How can I change sidebar width size?Change this :
.content { float: left; width: 625px; padding: 15px 25px 0 10px; overflow: hidden; }
to this :
.content { float: left; width: 595px; padding: 15px 25px 0 10px; overflow: hidden; }
Forum: Themes and Templates
In reply to: How can I change sidebar width size?Hi,
You have to edit your style.css file by replacing :.sidebar { background: url(images/sidebar-divider.png) 0 0 repeat-y; padding: 0 0 0 29px; margin-top: 30px; position: relative; width: 260px; float: left; overflow: hidden; }
by :
.sidebar { background: url(images/sidebar-divider.png) 0 0 repeat-y; padding: 0 0 0 29px; margin-top: 30px; position: relative; width: 300px; float: left; overflow: hidden; }
You will however have to change the width of your content block to 595px, otherwise the sidebar will not be able to float left to the content.
Forum: Themes and Templates
In reply to: Where is this space coming from?You have to reset the default browser padding by setting padding:0 on #nav ul
Forum: Themes and Templates
In reply to: Where is this space coming from?Hi,
You are setting a 10px left margin directly in the img tag
<img src="https://linesofexcellence.com/wp-content/themes/LOEv2/images/logo.gif" width="130" height="135" border="0" alt="" style="margin-left: 10px; "/>