j3ddesign
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Changing colours in table cellsAh, found it!
.main-content article table tr:nth-child(2n) { background: rgba(0,0,0,0.05) }
Change it to:
.main-content article table tr:nth-child(2n) { background: white;}
(Line 201 style.css)
Forum: Themes and Templates
In reply to: Live Site not displaying posts within loopOops, i meant to to put this in the “how to’s and troubleshooting” section. could somebody move it please ??
Forum: Themes and Templates
In reply to: Changing colours in table cellsme again ??
where you have (bgcolor=”fffff”) it should be “background-color” ??
Forum: Themes and Templates
In reply to: Nice hover picshaha no worries, divs have outdated tables now imo ?? you can do all the styling you like with divs.
the centering thing would all be on the container width ??but if you want to use tables then fair enough ?? good luck to you buddy!
btw, love the rest of your site, had a listen to some of the tunes too ??only thing im not overly keen on was the text in the nav drop downs (hurt my head :P)
Peace out!
Forum: Themes and Templates
In reply to: Nice hover picsthats one thing i hate about tables. they’re a nightmare to work with in styling.
I didnt realise thats how you wanted the pics to go. if you want that, literally just a “float:left” will do that ??I’ve worked out my issue now, so happy to help you with yours as much as poss. if you send me the code for that page, id be happy to clean it up a lil and get it working ??
Forum: Fixing WordPress
In reply to: Trying to create a custom image gallerynever mind, got it working eventually ??
had simply missed out the “post_type” arg in the query.heres the working, cleaned up code for anybody interested:
Forum: Themes and Templates
In reply to: Nice hover picsHave a look at that.
what that does is a horizontal scrolling div with all images set to float left, with no wrapping, meaning they will continue to go left the more you add.Modify your loop around this and your set (this also means you dont need those white spaces around your images now too)
Sorry for the wait btw, ran into a few issues getting it to work ??
If your not confident modifying the loop, pastebin your template file your working on and ill give it a shot.
Forum: Themes and Templates
In reply to: Nice hover picsLooking over your code now, give me a few mins ??
thought id say to let you know i am working on it ??Forum: Fixing WordPress
In reply to: Trying to create a custom image galleryStill no closer to finding the issue.
It’s running a loop for each “album”, but it seems to only be the first image of the first loop in each. very bizarre!Forum: Themes and Templates
In reply to: Nice hover picsyour welcome.
I had a look at how they had done it and it seems to be a really bizarre way of going about it when you can just use a simple tag ??glad I could help!
Forum: Fixing WordPress
In reply to: Trying to create a custom image galleryi cant see how that would cause the issue :/
thats there to tell it to ignore the posts per page you set in the settings ??Thanks though!
Forum: Themes and Templates
In reply to: Nice hover pics:hover isn’t neccisarily a text function. let me try and put together an example.
-
HTTP
<div class="container"> <img src="https://www.flasherize.com/images/wordpress_logo.png" /> </div>
-
CSS
div.container { height: 500px; width: 400px; } div.container:hover { background-color:#F90; }
That help? ??
Forum: Themes and Templates
In reply to: Nice hover picsIt’s all in the CSS with the :hover attribute assigned to the area you want modifying on hover.
for example:
a {
color:#FFFFFF;
text-decoration:none;
}
a:hover {
text-decoration: underline;
}this example would simply underline the text for the nav on hover.
this can be done for anything ??Forum: Themes and Templates
In reply to: Is there a theme built as an events calendar?in terms of an actual theme i cant say i have seen one.
However i did manage to find a list of plugins that may be of some use.
WordPress Calendar PluginsEnjoy!
J3dForum: Themes and Templates
In reply to: Lightword theme question. Trying to add click to read more.to show the shorter content you would use the_excerpt(); as opposed to the_content(); in your loop.
to actually customize the read more link on this (from the default “…”)
this may be helpful