dodgyJim73
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How to change bg colors in Finale themeI just assumed it was this one ??
https://demo.themesmarts.com/finale/Forum: Themes and Templates
In reply to: How to change bg colors in Finale themeYou could try this section.
/* footer ================================================== */ .footer { width: 100%; background-color: #252336; height: 305px; }
Change background-color to whatever value you like. According to the style inspector it should be on line 1702 in the style.css file.
Good luck ??
UNCLE!!!!
OK…scrap everything I said earlier. Don’t try and edit code if you are totally green to this as you will just cause yourself more problems.
To get rid of that menu I would do this.
- In your WP dashboard. Go to Appearance > Menus.
- You will see the link ‘Create a new menu’. Click on this and create a menu called ‘Test’ and assign this menu to the Primary menu setting by clicking the checkbox ‘Primary menu’ and theh click the ‘Save Menu’ button.
- Don’t add anything to the menu, just leave it blank.
- Reload the page and it should be gone.
See my screenshot and what I changed at the following link.
https://i.imgur.com/ciPeGqU.jpgKeeping in mind, depending on what you’ve already modified it might be a slightly different approach but should be similar.
This is your safest way to make that menu vanish.
Forum: Themes and Templates
In reply to: [Spacious] Read more translateHey there.
This link should answer your questions, it’s quite straightforward.
https://codex.www.ads-software.com/Installing_WordPress_in_Your_LanguageThis is the link to the Portuguese (Portugal) locale.
https://wpcentral.io/internationalization/pt/Good luck ??
If you don’t want the horizontal lines or prest news then delete or comment out this section. I’d probably comment it out until you are sure you don’t need it.
<!-- NAVIGATION START --> <nav class="main-nav iegradient" id="main-navigation" role="navigation"> <div class="innerwrap"> <ul class="sf-menu"> <li class="cat-item cat-item-5"><a href="https://public.prestmds.com/category/prest-news/" title="View all posts filed under Prest News">Prest News</a> </li> </ul></div> </nav> <!-- NAVIGATION END -->
The #topbanner code that you pasted is the “Complete Contact Info” and you said you liked where that was placed on the page.
What link are you trying to get to the far right of the main nav menu? Do you want it to the right of FAQ or all the way flush against the right hand side?
Well. You don’t need to change any CSS code, that is working just fine. It’s the way the navigation menu code is being generated that is causing the problem.
Did you manually add the nav menu code to the header.php template? I’ve never seen WP generate code that doesn’t follow its normal structure.
The horizontal blue line is appearing because of this CSS code…
#main-navigation .sf-menu a { text-decoration: none; display: block; font-size: 1.25em; padding: 0.75em 1em; text-transform: capitalize; color: #333; font-weight: bold !important; margin: 0px; border-bottom: 5px solid #52C0D4; }
On the page you have the first anchor tag that isn’t contained inside an li tag. This is causing it to push outside of the normal nav list.
<ul class="sf-menu sf-js-enabled sf-shadow"> <a rel="contact-info" title="Complete Contact Info" href="https://public.prestmds.com/faq/contact-info/"> </a> <li class="cat-item cat-item-5"> <a rel="contact-info" title="Complete Contact Info" href="https://public.prestmds.com/faq/contact-info/"></a><a href="https://public.prestmds.com/category/prest-news/" title="View all posts filed under Prest News">Prest News</a> </li> </ul>
So…delete that first anchor tag and you will be fine but you also appear to have 2 anchor tags in the one list item so there’s something a little bit off.
Your final output needs to look like this for it to function correctly.
<ul class="sf-menu sf-js-enabled sf-shadow"> <li class="cat-item cat-item-5"><a rel="contact-info" title="Complete Contact Info" href="https://public.prestmds.com/faq/contact-info/">Contact Info</a></li> <li class="cat-item cat-item-5"><a href="https://public.prestmds.com/category/prest-news/" title="View all posts filed under Prest News">Prest News</a></li> </ul>
Excellent!
Forum: Themes and Templates
In reply to: [Business Pro] Get rid of the READ MORENo problem. I have a lot of understanding errors myself ??
Forum: Themes and Templates
In reply to: [Radcliffe] Change post/page title styleAwesome, glad to help! ??
Forum: Themes and Templates
In reply to: [Business Pro] Get rid of the READ MOREDon’t forget, the ‘read more’ option only shows up on the main blog index page:
https://www.renuecomputers.com/wordpress/?page_id=39Not on the actual post page:
https://www.renuecomputers.com/wordpress/?p=1Forum: Themes and Templates
In reply to: [Business Pro] Get rid of the READ MOREHi RC,
You have probably already checked this but have you selected the ‘more’ option in the editor by any chance? I notice there’s quite a few line breaks below the post content. Is the ‘more’ option at the very bottom of the post?
It might seem simple but I’ve had friends ask me this before and there’s been a ‘more’ insert and the very bottom of the post they had missed when it was published.
There’s other options you can do with the_content(); code to strip out the ‘read more’ option but it’s good to get the basics out of the way first. Maybe add a couple more posts of mixed content to see what happens.
Cheers
Forum: Fixing WordPress
In reply to: how to remove HTML tag from commentHi ceomkg,
This previous discussion topic has a few options that could help you.
This one also.
Good luck ??
Forum: Themes and Templates
In reply to: [Radcliffe] Change post/page title styleHey Aidan.
Before you modify style.css – make a backup of it! Select all and copy into a text editor at the very least. That way you can copy it back and save it if you mess something up.
Option 1
In style.css do a search for .post-title and change the text-transform option to none instead of uppercase. This will reset it back to normal, when you add a new post you need to make sure you type the title in the desired case though.Option 2
Another option is to set the text-transform to lowercase and then add an extra pseudo element to change the first letter only to uppercase.So first modify the .post-title style to lowercase. You can see it in the first example below.
.post-title { font-family: 'Abril Fatface', serif; font-size: 3em; text-transform: lowercase; letter-spacing: 1px; text-align: center; }
Then add this directly below the .post-title code.
.post-title::first-letter { text-transform: uppercase; }
That should do what you need. The ::first-letter element will work for you because it’s being used on a block level element (the h2 tag) but it won’t work on an inline element, like an anchor tag.
Let me know how you go.
Good luck ??
Hi shyamraj
Do you have a link so we can take a look and find out some more information?
What social plug-in are you using?
Cheers