ivana78
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problem, modal suddenly disapearringOne remar more, i am using Bootstrap Modals plugin 🙂
Forum: Plugins
In reply to: [Posts in Page] Wrapping text around featured imageHello, I googled a little bit and found these css code:
img.wp-post-image, img.attachment-full, img.attachment-large, img.attachment-medium, img.attachment-thumbnail { display: block; margin: 15px auto; padding-right: 20px; width: auto; float:left; }It’s doing the thing, but it’s not the best solution, because, this code is reflecting on all pages with this css thumbnail element.
regards, Ivana
Forum: Plugins
In reply to: [Posts in Page] Wrapping text around featured imageI have now the same problem, have you found the solution?
You were right, I missed one closing </div> in content.php and in content-image.php this messed all the code. Thanks for helping.
IvanaI inspected the problem locally. WordPress is putting
<div class="col-xs-12 col-sm-4">inside<div class="col-xs-12 col-sm-8">. I don’t know how to fix it?My site is for time being on a local wamp server 🙁 therefore I cannot provide a link. I am creating theme from the scratch.
Hello, I already posted above the content of my blog.php, do you need something else in addition? Why should be this a problem with css?, I only use a bootstrap.min.css file.
Forum: Fixing WordPress
In reply to: Parse error: syntax error, unexpected 'endwhile' (T_ENDWHILE)Thanks, it worked 🙂
Forum: Fixing WordPress
In reply to: Parse error: syntax error, unexpected 'endwhile' (T_ENDWHILE)Here it is the content of the content php:
`<br>
<small>Posted on: <?php the_date(‘d.m.Y’); ?> time: <?php the_time(‘H:i’);?>h in category: <?php the_category(); ?></small>
<h3><?php the_title(); ?></h3>
<div class=”thumbnail-img”><?php the_post_thumbnail(array(200,200)); ?>
<p><?php the_content(); ?></p>
<hr>
<?php endwhile; endif; ?> `Forum: Fixing WordPress
In reply to: Parse error: syntax error, unexpected 'endwhile' (T_ENDWHILE)I added:
‘<?php endwhile; endif; ?>’
to close the loop and if, but I still receive the same massage:
Parse error: syntax error, unexpected ‘endwhile’ (T_ENDWHILE) in C:\wamp\www\DW_WP_Sites\wp-content\themes\First\content.php on line 8Forum: Fixing WordPress
In reply to: Parse error: syntax error, unexpected 'endwhile' (T_ENDWHILE)This is the content of my index.php. Aside I do have content.php file with following content:
<small>Posted on: <?php the_date('d.m.Y'); ?> time: <?php the_time('H:i');?>h in category: <?php the_category(); ?></small> <h3><?php the_title(); ?></h3> <div class="thumbnail-img"><?php the_post_thumbnail(array(200,200)); ?> <p><?php the_content(); ?></p> <hr>regards, Ivana
Ok, I know. I’m receiving the message in code inspector that my style sheet could not be loaded. My Theme URI is on local server WAMP not on a web server, and I don’t know what Theme URI path to write.
The problem is in comments of style.css. The name of my theme is Adorable. I tried as you wrote, but still isn’t working:
* Theme Name: Mytheme Theme URI: themes/Adorable ....*