AKINAKTANSEL
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Swell Lite] Google analytics tracking codeThere is a plugin for placing script to the header or footer of your wordpress theme:
https://www.ads-software.com/plugins/header-footer/
this is healthier since playing with the core code is not a good practice. and of course analytics code goes into the header.
I hope it helps.
Forum: Themes and Templates
In reply to: [Ultra] Background Images1) Add the background image to the library and copy the url of the upload.
2) Then go to your theme’s (or child theme’s) style.css file and at the very end add this code:
body {
background: url(“the url that you copied”);
}Forum: Themes and Templates
In reply to: Help With Custom CSSbody.home div.column-block h4{
font-size: —
font-weight:—
}i could not understand your second question. if you give detail maybe i can help.
Regards.
Forum: Themes and Templates
In reply to: Wanting non-menu new pagei am not exactly sure what you mean with your question but you can directly remove a page from Appearance >> Menus . Delete the page and re-save menu.
but you can also hide the page from the menu, by first inspecting the menu item with firebug or other tool. when you are sure about the id and class of the menu item, you can add the following code at the end of your themes style.css file.
…menu-item…..{
display: none;
}Forum: Themes and Templates
In reply to: how to change purchased theme demo pictureyou should first create pages for showing as dropdown in navigation.
then go to Appearances>>Menus
add new pages to the menu. drag new pages a little to the right so they can be sub menu items of under which page you put and dragged them
thats all. i hope it helps again .
its been like explaining how to cook but go ahead with learning wordpress:)
Forum: Themes and Templates
In reply to: how to change purchased theme demo picturego to Appearance>>Theme Options OR Appearance>>Customizer and look for the logo or header and change the logo/photo as you wish.
i hope this helps for a beginner.
Forum: Themes and Templates
In reply to: [Tiny Framework] Logo Sizeyou can test this yourself, adding a logo and vieving it. then smaller or larger ones(of course constant proportions). logo sizes advised on themes are ideal sizes but it is not a must.
Forum: Themes and Templates
In reply to: Adding ARCHIVES to menu topin the apperances >> menu area, on the left there is a CATEGORIES section below PAGES. You can create new links to add your menu by assigning categories.and you can change the title display on the menu.
thats so easy.:)
Forum: Themes and Templates
In reply to: [Nirvana] Make links in sidebar follow while scrollingi mean
</br> tags.Forum: Themes and Templates
In reply to: [Nirvana] Make links in sidebar follow while scrollingif not set by the theme and you handcoded in the footer area of your theme, just delete
</br> tags.Forum: Themes and Templates
In reply to: [Nirvana] Make links in sidebar follow while scrollingyour site really seems messed up and honestly i have no idea about your problem. but what i can advise you is:
set homepage template as full width (no sidebars) from the page settings. you can use three column template for other pages but it is really impractical to use this for a homepage.
if you set homepage as full with, slider will also fit full layout.
i hope this helps.
Forum: Themes and Templates
In reply to: [Nirvana] Make links in sidebar follow while scrollingi mean be sure about the class and id of the element you want to act on. you can use inspect element by firebug or google tools. the element is not #sidebar as you first said. and neither mine:)
i wanted to advice you should be sure about the element before adding CSS rules to it.
Forum: Themes and Templates
In reply to: [Nirvana] Make links in sidebar follow while scrollingTry this:
div#primary.widget-area.sidey{
position: fixed !important;
}Forum: Themes and Templates
In reply to: [Twenty Fourteen] Color Change to Nav Barand as a trick, select color with colorpicker(firebug tools or other).
open your themes style.css file in an editor and FIND AND REPLACE ALL with your colorpicker value to whatever you want.
i know this seems not a good practice but it works all the time:) if you dont want to touch any code.
Forum: Themes and Templates
In reply to: [Charitas Lite] Pages and categoriesdownload this plugin from www.ads-software.com:
https://www.ads-software.com/plugins/list-category-posts/
install and activate the plugin and add this shortcode to your Events page:
[catlist name=”events”]
p.s: in quotation marks, your category name for events.