dhamayanthi92
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Align text center on mobileHappy to help
Hi
Use below css
.comment-body a { box-shadow: none; }
Forum: Themes and Templates
In reply to: Vogue theme – center aligning post title + major flawHi
Try using below css
.post-loop-content .entry-content p{ Width: 100% !important; word-wrap: break-word !important; }
Clear the cache and check
Forum: Themes and Templates
In reply to: [pinpress] Change the width of the post on home pageHi
Can you please post your site URL to see how it looks now?
Forum: Themes and Templates
In reply to: [Customizr] logo and menu on different linesHi
It seems to be choosing wrong header layout. Please double check or compare with your template documentation.
Hi
Simple !!
Go to /wp-content/themes/twentyfourteen/page-templates/full-width.php
Open the file and below css code on line no 11
<style> .site-content .entry-header { max-width: unset !important; } .site-content { margin-left: 0 !important; } .entry-content { float: left; } .site::before{ background: none; } </style>
Find below line on line no 41
get_sidebar();
Change this to
//get_sidebar();
Save.
Forum: Themes and Templates
In reply to: Align text center on mobileHi
Here is the css code. Add below css in your /wp-content/themes/dt-the7/css/main.min.css file
@media only screen and (min-width:320px) and (max-width:760px){ .company-info { text-align: center; } }
You have to do last step given below. In your text widget you are having code like below
<p>Registered Address:<br> TGF Security Limited, 4 Park Road<br> Birmingham, B13 8AB </p> <p>Tel: <a href="tel:+441212190102">0121 219 0102</a><br> Email: <a href="mailto:[email protected]">[email protected]</a></p> <p>Co. Reg. Number 10376463</p>
Change this with
<div class="company-info"> <p>Registered Address:<br> TGF Security Limited, 4 Park Road<br> Birmingham, B13 8AB </p> <p>Tel: <a href="tel:+441212190102">0121 219 0102</a><br> Email: <a href="mailto:[email protected]">[email protected]</a></p> <p>Co. Reg. Number 10376463</p> </div>
Forum: Fixing WordPress
In reply to: Header ImageHi
It is very easy to remove date from your posts. Add below snippet in your template’s stylesheet. Below css snippet will remove the date and time and reply box from posts.
CSS is generally theme specific, so what works in one theme will typically not work in another, For Twenty Sixteen, add the following CSS to hide the date on posts.
.comments-area { display: none; } .entry-footer .posted-on { display: none !important; }
Save
Clear the cache and checkForum: Fixing WordPress
In reply to: How to Post Slideshow Shortcode on Home PageHi
What template are you using? Try adding below line in your template’s file which is rendering home page.
HiWhat template are you using? Try adding below line in your template’s file which is rendering home page.
<?php echo do_shortcode( 'YOUR-SLIDER-SHORTCODE' ); ?>
You can try this with wordpress default template.
For example, in default template Twenty Sixteen, the below renders the home page
/wp-content/themes/twentysixteen/index.php and edit the fileAdd this line
<?php echo do_shortcode( 'YOUR-SLIDER-SHORTCODE' ); ?>
on around line no 18.Save.
Same as do this in your template.
- This reply was modified 8 years, 5 months ago by dhamayanthi92.
- This reply was modified 8 years, 5 months ago by dhamayanthi92.